508:fd23a6b4666d
|
2012-05-20 |
Paul Boddie |
changeset
files
shortlog
graph
|
Attempted to perform more thorough attribute usage analysis, especially where
loops and complicated control-flow structures are involved.
Added some more tests. |
|
|
micropython/data.py tests/attribute_access_constant.py tests/for_if_usage_continue.py
|
|
507:faec8d7e1a16
|
2012-05-19 |
Paul Boddie |
changeset
files
shortlog
graph
|
Print warnings via standard error.
Added a test of for/if combinations and attribute usage. |
|
|
micropython/__init__.py micropython/common.py micropython/data.py micropython/inspect.py micropython/report.py tests/for_if_usage.py
|
|
506:d5f5db3d3636
|
2012-05-18 |
Paul Boddie |
changeset
files
shortlog
graph
|
Added support for the inspection and generation of list comprehensions.
Moved various common code generation routines into separate methods and adjusted
the list and sequence population methods for wider re-use. |
|
|
micropython/ast.py micropython/inspect.py micropython/trans.py tests/listcomp.py
|
|
505:b379d0e57dca
|
2012-05-17 |
Paul Boddie |
changeset
files
shortlog
graph
|
Added PyGame emulation stubs. |
|
|
lib/pygame/__init__.py lib/pygame/constants.py
|
|
504:3af81876ceae
|
2012-05-17 |
Paul Boddie |
changeset
files
shortlog
graph
|
Added attribute usage notes about regions where AttributeError may be handled. |
|
|
TO_DO.txt
|
|
503:6e530bfa326e
|
2012-05-14 |
Paul Boddie |
changeset
files
shortlog
graph
|
Improved support for specific type annotations in program regions. |
|
|
TO_DO.txt micropython/common.py micropython/data.py
|
|
502:8bf8faf18dbe
|
2012-05-11 |
Paul Boddie |
changeset
files
shortlog
graph
|
Added a _random placeholder module. |
|
|
lib/_random.py
|
|
501:0d0cb0b43c38
|
2012-05-11 |
Paul Boddie |
changeset
files
shortlog
graph
|
Added support for loading submodules given as imported names in "from"
statements (such as "module" in "from imported_package import module" referring
to "imported_package.module"). |
|
|
micropython/inspect.py tests/import_from.py
|
|
500:40acedf4beed
|
2012-05-10 |
Paul Boddie |
changeset
files
shortlog
graph
|
Added generator expression output support. |
|
|
micropython/report.py
|
|
499:aecd140f6642
|
2012-05-10 |
Paul Boddie |
changeset
files
shortlog
graph
|
Changed the builtins module loading to use the module search path. This makes it
easier to run the test program from another location.
Added a note about relative imports. |
|
|
TO_DO.txt micropython/cmd.py
|
|