├── .gitignore ├── LICENSE ├── README.md ├── conc_test.py ├── deco ├── __init__.py ├── astutil.py └── conc.py ├── examples ├── climate_model.py ├── free.py ├── hash_test.py ├── nbody.py ├── simple_loop.py ├── simple_loop2.py └── threads.py ├── setup.py └── test ├── testast.py └── testconc.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/README.md -------------------------------------------------------------------------------- /conc_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/conc_test.py -------------------------------------------------------------------------------- /deco/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/deco/__init__.py -------------------------------------------------------------------------------- /deco/astutil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/deco/astutil.py -------------------------------------------------------------------------------- /deco/conc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/deco/conc.py -------------------------------------------------------------------------------- /examples/climate_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/climate_model.py -------------------------------------------------------------------------------- /examples/free.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/free.py -------------------------------------------------------------------------------- /examples/hash_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/hash_test.py -------------------------------------------------------------------------------- /examples/nbody.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/nbody.py -------------------------------------------------------------------------------- /examples/simple_loop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/simple_loop.py -------------------------------------------------------------------------------- /examples/simple_loop2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/simple_loop2.py -------------------------------------------------------------------------------- /examples/threads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/examples/threads.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/setup.py -------------------------------------------------------------------------------- /test/testast.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/test/testast.py -------------------------------------------------------------------------------- /test/testconc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alex-sherman/deco/HEAD/test/testconc.py --------------------------------------------------------------------------------