├── .gitignore ├── .travis.yml ├── AUTHORS ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.rst ├── docs ├── Makefile ├── conf.py ├── index.rst ├── internals │ ├── contributing.rst │ └── roadmap.rst ├── make.bat └── releases.txt ├── seasnake ├── __init__.py ├── __main__.py ├── model.py ├── parser.py └── writer.py ├── setup.py ├── tests ├── __init__.py ├── test_arrays.py ├── test_class.py ├── test_class_template.py ├── test_do_while.py ├── test_enum.py ├── test_for.py ├── test_function.py ├── test_if.py ├── test_inner_class.py ├── test_literals.py ├── test_method.py ├── test_namespace.py ├── test_operators.py ├── test_preprocessor.py ├── test_struct.py ├── test_type_handling.py ├── test_typedef.py ├── test_union.py ├── test_utils.py └── utils.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/AUTHORS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/internals/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/internals/contributing.rst -------------------------------------------------------------------------------- /docs/internals/roadmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/internals/roadmap.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/releases.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/docs/releases.txt -------------------------------------------------------------------------------- /seasnake/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/seasnake/__init__.py -------------------------------------------------------------------------------- /seasnake/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/seasnake/__main__.py -------------------------------------------------------------------------------- /seasnake/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/seasnake/model.py -------------------------------------------------------------------------------- /seasnake/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/seasnake/parser.py -------------------------------------------------------------------------------- /seasnake/writer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/seasnake/writer.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_arrays.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_arrays.py -------------------------------------------------------------------------------- /tests/test_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_class.py -------------------------------------------------------------------------------- /tests/test_class_template.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_class_template.py -------------------------------------------------------------------------------- /tests/test_do_while.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_do_while.py -------------------------------------------------------------------------------- /tests/test_enum.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_enum.py -------------------------------------------------------------------------------- /tests/test_for.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_for.py -------------------------------------------------------------------------------- /tests/test_function.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_function.py -------------------------------------------------------------------------------- /tests/test_if.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_if.py -------------------------------------------------------------------------------- /tests/test_inner_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_inner_class.py -------------------------------------------------------------------------------- /tests/test_literals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_literals.py -------------------------------------------------------------------------------- /tests/test_method.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_method.py -------------------------------------------------------------------------------- /tests/test_namespace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_namespace.py -------------------------------------------------------------------------------- /tests/test_operators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_operators.py -------------------------------------------------------------------------------- /tests/test_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_preprocessor.py -------------------------------------------------------------------------------- /tests/test_struct.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_struct.py -------------------------------------------------------------------------------- /tests/test_type_handling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_type_handling.py -------------------------------------------------------------------------------- /tests/test_typedef.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_typedef.py -------------------------------------------------------------------------------- /tests/test_union.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_union.py -------------------------------------------------------------------------------- /tests/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/test_utils.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tests/utils.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pybee/seasnake/HEAD/tox.ini --------------------------------------------------------------------------------