├── .clang-format ├── .github ├── dependabot.yml ├── release-drafter.yml └── workflows │ ├── labeler.yml │ ├── main.yml │ ├── master-merge.yml │ └── release.yml ├── .gitignore ├── .gitmodules ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs ├── Doxyfile ├── Makefile └── source │ ├── appendix.rst │ ├── arrays.rst │ ├── conf.py │ ├── index.rst │ ├── install.rst │ ├── shock-and-awe.rst │ ├── tutorial.rst │ └── tutorial │ ├── functions.rst │ ├── libpy_tutorial │ ├── __init__.py │ ├── arrays.cc │ ├── classes.cc │ ├── data │ │ └── original.png │ ├── exceptions.cc │ ├── function.cc │ ├── ndarrays.cc │ └── scalar_functions.cc │ └── setup.py ├── etc ├── asan-path ├── build-and-run ├── detect-compiler.cc ├── ext_suffix.py ├── ld_flags.py └── python_version.py ├── gdb └── libpy-gdb.py ├── include └── libpy │ ├── abi.h │ ├── any.h │ ├── any_vector.h │ ├── autoclass.h │ ├── autofunction.h │ ├── automodule.h │ ├── borrowed_ref.h │ ├── buffer.h │ ├── build_tuple.h │ ├── call_function.h │ ├── char_sequence.h │ ├── datetime64.h │ ├── demangle.h │ ├── detail │ ├── api.h │ ├── autoclass_cache.h │ ├── autoclass_object.h │ ├── no_destruct_wrapper.h │ ├── numpy.h │ └── python.h │ ├── devirtualize.h │ ├── dict_range.h │ ├── exception.h │ ├── from_object.h │ ├── getattr.h │ ├── gil.h │ ├── hash.h │ ├── itertools.h │ ├── library_wrappers │ └── sparsehash.h │ ├── meta.h │ ├── ndarray_view.h │ ├── numpy_utils.h │ ├── object_map_key.h │ ├── owned_ref.h │ ├── range.h │ ├── scope_guard.h │ ├── singletons.h │ ├── str_convert.h │ ├── stream.h │ ├── table.h │ ├── table_details.h │ ├── to_object.h │ └── util.h ├── libpy ├── __init__.py ├── _build-and-run ├── _detect-compiler.cc ├── build.py └── include ├── setup.py ├── src ├── abi.cc ├── autoclass.cc ├── buffer.cc ├── demangle.cc ├── dict_range.cc ├── exception.cc ├── gil.cc ├── object_map_key.cc └── range.cc ├── testleaks.supp ├── tests ├── .dir-locals.el ├── __init__.py ├── _runner.cc ├── _test_automodule.cc ├── conftest.py ├── cxx.py ├── library_wrappers │ └── test_sparsehash.cc ├── test_any.cc ├── test_any_vector.cc ├── test_autoclass.cc ├── test_autofunction.cc ├── test_automodule.py ├── test_call_function.cc ├── test_cxx.py ├── test_datetime64.cc ├── test_demangle.cc ├── test_devirtualize.cc ├── test_dict_range.cc ├── test_exception.cc ├── test_from_object.cc ├── test_getattr.cc ├── test_hash.cc ├── test_itertools.cc ├── test_meta.cc ├── test_ndarray_view.cc ├── test_numpy_utils.h ├── test_object_map_key.cc ├── test_range.cc ├── test_scope_guard.cc ├── test_scoped_ref.cc ├── test_singletons.cc ├── test_str_convert.cc ├── test_table.cc ├── test_to_object.cc ├── test_util.cc └── test_utils.h ├── tox.ini └── version /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/release-drafter.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.github/release-drafter.yml -------------------------------------------------------------------------------- /.github/workflows/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.github/workflows/labeler.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.github/workflows/master-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.github/workflows/master-merge.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Doxyfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/Doxyfile -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/source/appendix.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/appendix.rst -------------------------------------------------------------------------------- /docs/source/arrays.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/arrays.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /docs/source/install.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/install.rst -------------------------------------------------------------------------------- /docs/source/shock-and-awe.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/shock-and-awe.rst -------------------------------------------------------------------------------- /docs/source/tutorial.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial.rst -------------------------------------------------------------------------------- /docs/source/tutorial/functions.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/functions.rst -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/__init__.py: -------------------------------------------------------------------------------- 1 | import libpy # noqa 2 | -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/arrays.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/arrays.cc -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/classes.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/classes.cc -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/data/original.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/data/original.png -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/exceptions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/exceptions.cc -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/function.cc -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/ndarrays.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/ndarrays.cc -------------------------------------------------------------------------------- /docs/source/tutorial/libpy_tutorial/scalar_functions.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/libpy_tutorial/scalar_functions.cc -------------------------------------------------------------------------------- /docs/source/tutorial/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/docs/source/tutorial/setup.py -------------------------------------------------------------------------------- /etc/asan-path: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/etc/asan-path -------------------------------------------------------------------------------- /etc/build-and-run: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/etc/build-and-run -------------------------------------------------------------------------------- /etc/detect-compiler.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/etc/detect-compiler.cc -------------------------------------------------------------------------------- /etc/ext_suffix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/etc/ext_suffix.py -------------------------------------------------------------------------------- /etc/ld_flags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/etc/ld_flags.py -------------------------------------------------------------------------------- /etc/python_version.py: -------------------------------------------------------------------------------- 1 | import sys 2 | print(' '.join(map(str, sys.version_info[:2]))) 3 | -------------------------------------------------------------------------------- /gdb/libpy-gdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/gdb/libpy-gdb.py -------------------------------------------------------------------------------- /include/libpy/abi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/abi.h -------------------------------------------------------------------------------- /include/libpy/any.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/any.h -------------------------------------------------------------------------------- /include/libpy/any_vector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/any_vector.h -------------------------------------------------------------------------------- /include/libpy/autoclass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/autoclass.h -------------------------------------------------------------------------------- /include/libpy/autofunction.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/autofunction.h -------------------------------------------------------------------------------- /include/libpy/automodule.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/automodule.h -------------------------------------------------------------------------------- /include/libpy/borrowed_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/borrowed_ref.h -------------------------------------------------------------------------------- /include/libpy/buffer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/buffer.h -------------------------------------------------------------------------------- /include/libpy/build_tuple.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/build_tuple.h -------------------------------------------------------------------------------- /include/libpy/call_function.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/call_function.h -------------------------------------------------------------------------------- /include/libpy/char_sequence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/char_sequence.h -------------------------------------------------------------------------------- /include/libpy/datetime64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/datetime64.h -------------------------------------------------------------------------------- /include/libpy/demangle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/demangle.h -------------------------------------------------------------------------------- /include/libpy/detail/api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/detail/api.h -------------------------------------------------------------------------------- /include/libpy/detail/autoclass_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/detail/autoclass_cache.h -------------------------------------------------------------------------------- /include/libpy/detail/autoclass_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/detail/autoclass_object.h -------------------------------------------------------------------------------- /include/libpy/detail/no_destruct_wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/detail/no_destruct_wrapper.h -------------------------------------------------------------------------------- /include/libpy/detail/numpy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/detail/numpy.h -------------------------------------------------------------------------------- /include/libpy/detail/python.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/detail/python.h -------------------------------------------------------------------------------- /include/libpy/devirtualize.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/devirtualize.h -------------------------------------------------------------------------------- /include/libpy/dict_range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/dict_range.h -------------------------------------------------------------------------------- /include/libpy/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/exception.h -------------------------------------------------------------------------------- /include/libpy/from_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/from_object.h -------------------------------------------------------------------------------- /include/libpy/getattr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/getattr.h -------------------------------------------------------------------------------- /include/libpy/gil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/gil.h -------------------------------------------------------------------------------- /include/libpy/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/hash.h -------------------------------------------------------------------------------- /include/libpy/itertools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/itertools.h -------------------------------------------------------------------------------- /include/libpy/library_wrappers/sparsehash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/library_wrappers/sparsehash.h -------------------------------------------------------------------------------- /include/libpy/meta.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/meta.h -------------------------------------------------------------------------------- /include/libpy/ndarray_view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/ndarray_view.h -------------------------------------------------------------------------------- /include/libpy/numpy_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/numpy_utils.h -------------------------------------------------------------------------------- /include/libpy/object_map_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/object_map_key.h -------------------------------------------------------------------------------- /include/libpy/owned_ref.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/owned_ref.h -------------------------------------------------------------------------------- /include/libpy/range.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/range.h -------------------------------------------------------------------------------- /include/libpy/scope_guard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/scope_guard.h -------------------------------------------------------------------------------- /include/libpy/singletons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/singletons.h -------------------------------------------------------------------------------- /include/libpy/str_convert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/str_convert.h -------------------------------------------------------------------------------- /include/libpy/stream.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/stream.h -------------------------------------------------------------------------------- /include/libpy/table.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/table.h -------------------------------------------------------------------------------- /include/libpy/table_details.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/table_details.h -------------------------------------------------------------------------------- /include/libpy/to_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/to_object.h -------------------------------------------------------------------------------- /include/libpy/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/include/libpy/util.h -------------------------------------------------------------------------------- /libpy/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/libpy/__init__.py -------------------------------------------------------------------------------- /libpy/_build-and-run: -------------------------------------------------------------------------------- 1 | ../etc/build-and-run -------------------------------------------------------------------------------- /libpy/_detect-compiler.cc: -------------------------------------------------------------------------------- 1 | ../etc/detect-compiler.cc -------------------------------------------------------------------------------- /libpy/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/libpy/build.py -------------------------------------------------------------------------------- /libpy/include: -------------------------------------------------------------------------------- 1 | ../include/ -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/setup.py -------------------------------------------------------------------------------- /src/abi.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/abi.cc -------------------------------------------------------------------------------- /src/autoclass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/autoclass.cc -------------------------------------------------------------------------------- /src/buffer.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/buffer.cc -------------------------------------------------------------------------------- /src/demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/demangle.cc -------------------------------------------------------------------------------- /src/dict_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/dict_range.cc -------------------------------------------------------------------------------- /src/exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/exception.cc -------------------------------------------------------------------------------- /src/gil.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/gil.cc -------------------------------------------------------------------------------- /src/object_map_key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/object_map_key.cc -------------------------------------------------------------------------------- /src/range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/src/range.cc -------------------------------------------------------------------------------- /testleaks.supp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/testleaks.supp -------------------------------------------------------------------------------- /tests/.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/.dir-locals.el -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | import libpy # noqa 2 | -------------------------------------------------------------------------------- /tests/_runner.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/_runner.cc -------------------------------------------------------------------------------- /tests/_test_automodule.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/_test_automodule.cc -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/cxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/cxx.py -------------------------------------------------------------------------------- /tests/library_wrappers/test_sparsehash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/library_wrappers/test_sparsehash.cc -------------------------------------------------------------------------------- /tests/test_any.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_any.cc -------------------------------------------------------------------------------- /tests/test_any_vector.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_any_vector.cc -------------------------------------------------------------------------------- /tests/test_autoclass.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_autoclass.cc -------------------------------------------------------------------------------- /tests/test_autofunction.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_autofunction.cc -------------------------------------------------------------------------------- /tests/test_automodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_automodule.py -------------------------------------------------------------------------------- /tests/test_call_function.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_call_function.cc -------------------------------------------------------------------------------- /tests/test_cxx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_cxx.py -------------------------------------------------------------------------------- /tests/test_datetime64.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_datetime64.cc -------------------------------------------------------------------------------- /tests/test_demangle.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_demangle.cc -------------------------------------------------------------------------------- /tests/test_devirtualize.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_devirtualize.cc -------------------------------------------------------------------------------- /tests/test_dict_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_dict_range.cc -------------------------------------------------------------------------------- /tests/test_exception.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_exception.cc -------------------------------------------------------------------------------- /tests/test_from_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_from_object.cc -------------------------------------------------------------------------------- /tests/test_getattr.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_getattr.cc -------------------------------------------------------------------------------- /tests/test_hash.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_hash.cc -------------------------------------------------------------------------------- /tests/test_itertools.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_itertools.cc -------------------------------------------------------------------------------- /tests/test_meta.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_meta.cc -------------------------------------------------------------------------------- /tests/test_ndarray_view.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_ndarray_view.cc -------------------------------------------------------------------------------- /tests/test_numpy_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_numpy_utils.h -------------------------------------------------------------------------------- /tests/test_object_map_key.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_object_map_key.cc -------------------------------------------------------------------------------- /tests/test_range.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_range.cc -------------------------------------------------------------------------------- /tests/test_scope_guard.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_scope_guard.cc -------------------------------------------------------------------------------- /tests/test_scoped_ref.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_scoped_ref.cc -------------------------------------------------------------------------------- /tests/test_singletons.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_singletons.cc -------------------------------------------------------------------------------- /tests/test_str_convert.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_str_convert.cc -------------------------------------------------------------------------------- /tests/test_table.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_table.cc -------------------------------------------------------------------------------- /tests/test_to_object.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_to_object.cc -------------------------------------------------------------------------------- /tests/test_util.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_util.cc -------------------------------------------------------------------------------- /tests/test_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tests/test_utils.h -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/quantopian/libpy/HEAD/tox.ini -------------------------------------------------------------------------------- /version: -------------------------------------------------------------------------------- 1 | 0.2.5 2 | --------------------------------------------------------------------------------