├── .gitignore ├── CREDITS ├── EXPERIMENTAL ├── LICENSE ├── README.md ├── config.m4 ├── config.w32 ├── docs ├── TODO ├── guide.txt └── internals.txt ├── examples └── shell.php ├── package.php ├── package.xml ├── php_python.h ├── php_python_internal.h ├── python.c ├── python_convert.c ├── python_handlers.c ├── python_object.c ├── python_php.c ├── python_streams.c └── tests ├── TestModule.py ├── convert_to_php.phpt ├── foreach.phpt ├── ini_optimize.phpt ├── object_count_elements.phpt ├── object_dimension_delete.phpt ├── object_dimension_exists.phpt ├── object_get_properties.phpt ├── object_property_delete.phpt ├── object_property_exists.phpt ├── object_read_dimension.phpt ├── object_read_property.phpt ├── object_write_dimension.phpt ├── object_write_property.phpt ├── php_call.phpt ├── php_var.phpt ├── php_version.phpt ├── python_call.phpt ├── python_eval.phpt ├── python_exec.phpt ├── python_version.phpt ├── streams_default.phpt └── streams_ob.phpt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/.gitignore -------------------------------------------------------------------------------- /CREDITS: -------------------------------------------------------------------------------- 1 | Embedded Python 2 | Jon Parise 3 | -------------------------------------------------------------------------------- /EXPERIMENTAL: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/README.md -------------------------------------------------------------------------------- /config.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/config.m4 -------------------------------------------------------------------------------- /config.w32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/config.w32 -------------------------------------------------------------------------------- /docs/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/docs/TODO -------------------------------------------------------------------------------- /docs/guide.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/docs/guide.txt -------------------------------------------------------------------------------- /docs/internals.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/docs/internals.txt -------------------------------------------------------------------------------- /examples/shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/examples/shell.php -------------------------------------------------------------------------------- /package.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/package.php -------------------------------------------------------------------------------- /package.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/package.xml -------------------------------------------------------------------------------- /php_python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/php_python.h -------------------------------------------------------------------------------- /php_python_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/php_python_internal.h -------------------------------------------------------------------------------- /python.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/python.c -------------------------------------------------------------------------------- /python_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/python_convert.c -------------------------------------------------------------------------------- /python_handlers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/python_handlers.c -------------------------------------------------------------------------------- /python_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/python_object.c -------------------------------------------------------------------------------- /python_php.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/python_php.c -------------------------------------------------------------------------------- /python_streams.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/python_streams.c -------------------------------------------------------------------------------- /tests/TestModule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/TestModule.py -------------------------------------------------------------------------------- /tests/convert_to_php.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/convert_to_php.phpt -------------------------------------------------------------------------------- /tests/foreach.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/foreach.phpt -------------------------------------------------------------------------------- /tests/ini_optimize.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/ini_optimize.phpt -------------------------------------------------------------------------------- /tests/object_count_elements.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_count_elements.phpt -------------------------------------------------------------------------------- /tests/object_dimension_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_dimension_delete.phpt -------------------------------------------------------------------------------- /tests/object_dimension_exists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_dimension_exists.phpt -------------------------------------------------------------------------------- /tests/object_get_properties.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_get_properties.phpt -------------------------------------------------------------------------------- /tests/object_property_delete.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_property_delete.phpt -------------------------------------------------------------------------------- /tests/object_property_exists.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_property_exists.phpt -------------------------------------------------------------------------------- /tests/object_read_dimension.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_read_dimension.phpt -------------------------------------------------------------------------------- /tests/object_read_property.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_read_property.phpt -------------------------------------------------------------------------------- /tests/object_write_dimension.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_write_dimension.phpt -------------------------------------------------------------------------------- /tests/object_write_property.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/object_write_property.phpt -------------------------------------------------------------------------------- /tests/php_call.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/php_call.phpt -------------------------------------------------------------------------------- /tests/php_var.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/php_var.phpt -------------------------------------------------------------------------------- /tests/php_version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/php_version.phpt -------------------------------------------------------------------------------- /tests/python_call.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/python_call.phpt -------------------------------------------------------------------------------- /tests/python_eval.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/python_eval.phpt -------------------------------------------------------------------------------- /tests/python_exec.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/python_exec.phpt -------------------------------------------------------------------------------- /tests/python_version.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/python_version.phpt -------------------------------------------------------------------------------- /tests/streams_default.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/streams_default.phpt -------------------------------------------------------------------------------- /tests/streams_ob.phpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jparise/php-python/HEAD/tests/streams_ob.phpt --------------------------------------------------------------------------------