Hack/postbuild_processing/posthinted_builds
Chris Clauss fba648eac1 Declare success_indicator as a local variable
Redo #313 on the correct branch.
Declare success_indicator as a local variable, not a GLOBAL CONSTANT.

* By convention, values that may change at runtime should not be in UPPERCASE.
* A global variable can be read from either with or without a global statement
* A global variable can be written to only when preceded by a global statement
```python 
>>> SUCCESS_INDICATOR = 0
>>> def read_from_global():
...     print(SUCCESS_INDICATOR)
...
>>> def write_to_declared__global():
...     global SUCCESS_INDICATOR
...     SUCCESS_INDICATOR += 1
...
>>> def write_to_undeclared__global():
...     SUCCESS_INDICATOR += 1
...
>>> read_from_global()
0
>>> write_to_declared__global()
>>> read_from_global()
1
>>> write_to_undeclared__global()
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "<stdin>", line 2, in write_to_undeclared__global
UnboundLocalError: local variable 'SUCCESS_INDICATOR' referenced before assignment
```
2017-09-16 23:56:02 +07:00
..
otreports new test builds 2.020;DEV-012616 2016-01-26 00:52:37 +07:00
Hack-Bold.otf v2.020 otf posthinted builds 2016-04-24 17:50:03 +07:00
Hack-Bold.ttf v2.020 ttf pre-hinted builds, post-hinted builds added 2016-04-24 17:34:56 +07:00
Hack-BoldItalic.otf v2.020 otf posthinted builds 2016-04-24 17:50:03 +07:00
Hack-BoldItalic.ttf v2.020 ttf pre-hinted builds, post-hinted builds added 2016-04-24 17:34:56 +07:00
Hack-Italic.otf v2.020 otf posthinted builds 2016-04-24 17:50:03 +07:00
Hack-Italic.ttf v2.020 ttf pre-hinted builds, post-hinted builds added 2016-04-24 17:34:56 +07:00
Hack-Regular.otf v2.020 otf posthinted builds 2016-04-24 17:50:03 +07:00
Hack-Regular.ttf v2.020 ttf pre-hinted builds, post-hinted builds added 2016-04-24 17:34:56 +07:00
dev-versioner.py Declare success_indicator as a local variable 2017-09-16 23:56:02 +07:00
font-tables.py moved the development build scripts 2016-01-26 00:51:56 +07:00
otmod.py moved the development build scripts 2016-01-26 00:51:56 +07:00