Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-09-02 | fix "labels" confusion in get_labels_between | Bryan Bishop | |
There was both the labels module and a list called labels. Rename the local variable to foundlabels instead. | |||
2013-09-01 | Merge pull request #8 from kanzure/september-cleanup | Bryan Bishop | |
Minor wram.py fix | |||
2013-09-01 | make_wram_labels doesn't need globals now | Bryan Bishop | |
2013-09-01 | Merge branch 'master' into september-cleanup | Bryan Bishop | |
2013-09-01 | Merge pull request #7 from kanzure/september-cleanup | Bryan Bishop | |
python cleanup | |||
2013-09-01 | move the map_names import to the top | Bryan Bishop | |
Maybe it will get more attention up here. It needs to be cleaned up since it's a global used throughout the source code, plus it gets modified multiple times everywhere. Awful. | |||
2013-09-01 | remove a useless comment from pokered gbz80disasm | Bryan Bishop | |
What were these doing here, anyway? | |||
2013-09-01 | better ordering of imports in crystal.py | Bryan Bishop | |
2013-09-01 | better docstrings in helpers.py | Bryan Bishop | |
2013-09-01 | Merge branch 'master' into september-cleanup | Bryan Bishop | |
2013-09-01 | Merge pull request #4 from kanzure/fix-analyze-incbins | Bryan Bishop | |
Apply pokered changes from 'fix-analyze-incbins' | |||
2013-09-01 | apply pokered changes from 'fix-analyze-incbins' | Bryan Bishop | |
This helps to fix (pokered) gbz80disasm. These two disassemblers need to be merged together as soon as possible. | |||
2013-09-01 | fix tab in red gbz80disasm | Bryan Bishop | |
2013-09-01 | minor gbz80disasm formatting | Bryan Bishop | |
2013-09-01 | fix syntax on import gbz80disasm | Bryan Bishop | |
2013-09-01 | make mkdir_p raise a specific exception | Bryan Bishop | |
2013-09-01 | move mkdir_p out of gfx.py and into helpers.py | Bryan Bishop | |
It seems that mkdir_p is unused at the moment. | |||
2013-09-01 | import syntax in gfx.py | Bryan Bishop | |
2013-09-01 | docstring for MenuDataPointerParam | Bryan Bishop | |
2013-09-01 | log message for parse_script_asm_at | Bryan Bishop | |
2013-09-01 | move flatten and flattener into helpers | Bryan Bishop | |
2013-09-01 | fix typo in TrainerGroupTable assert message | Bryan Bishop | |
2013-09-01 | use TextScriptException again | Bryan Bishop | |
2013-09-01 | make up TextScriptException to replace two asserts | Bryan Bishop | |
2013-09-01 | use a custom AddressException instead of asserts | Bryan Bishop | |
There's no reason to have asserts thrown around in the source code like that. This replaces some of them with an AddressException and a new file called "exceptions.py" to store the exception definitions. | |||
2013-09-01 | move index and grouper into helpers.py | Bryan Bishop | |
2013-09-01 | improve spacing in Incbin and AsmSection | Bryan Bishop | |
2013-09-01 | fix spacing in get_pokemon_constant_by_id | Bryan Bishop | |
2013-09-01 | fix import item_constants syntax | Bryan Bishop | |
2013-09-01 | fix import wram syntax | Bryan Bishop | |
2013-09-01 | fix import pokemon_constants syntax | Bryan Bishop | |
2013-09-01 | fix import old_parse_scripts | Bryan Bishop | |
2013-09-01 | fix "from trainers import .." syntax | Bryan Bishop | |
2013-09-01 | don't need re | Bryan Bishop | |
2013-09-01 | import interval_map syntax | Bryan Bishop | |
2013-09-01 | "import pointers" instead of "from .. import .." | Bryan Bishop | |
2013-09-01 | import move_constants syntax | Bryan Bishop | |
2013-09-01 | "import romstr" instead of "from romstr import .." | Bryan Bishop | |
2013-09-01 | "import chars" instead of "from chars import .." | Bryan Bishop | |
2013-09-01 | move imports together | Bryan Bishop | |
2013-09-01 | "import pksv" instead of "from pksv import .." | Bryan Bishop | |
2013-09-01 | import labels instead of "from .. import .." | Bryan Bishop | |
2013-09-01 | don't import remove_quoted_text into crystal.py | Bryan Bishop | |
This function isn't used in crystal.py, so it can be safely removed from the imports. | |||
2013-09-01 | make the TestPostParsing test case work again | Bryan Bishop | |
It needs to be a subclass of unittest.TestCase in order to get any of the testing methods. Otherwise all of the tests fail when nosetests finds those tests. | |||
2013-09-01 | convert more prints to logging calls | Bryan Bishop | |
2013-09-01 | use logging in crystal.py instead of print | Bryan Bishop | |
2013-09-01 | docstring for crystal.py | Bryan Bishop | |
2013-09-01 | remove bryan_message for NotImplementedError | Bryan Bishop | |
Nothing was using it. | |||
2013-09-01 | remove an old comment about __main__ in crystal.py | Bryan Bishop | |
The comment no longer applies. | |||
2013-09-01 | remove the 'json.read = json.loads' hack | Bryan Bishop | |
There's no good reason to use json.read anymore, even in the case of jython. |