-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
1 addition
and
1 deletion.
There are no files selected for viewing
Submodule pybind11
updated
31 files
+6 −7 | .travis.yml | |
+2 −0 | docs/advanced/exceptions.rst | |
+1 −1 | docs/basics.rst | |
+45 −0 | docs/changelog.rst | |
+2 −2 | docs/conf.py | |
+27 −0 | docs/faq.rst | |
+18 −12 | include/pybind11/buffer_info.h | |
+63 −16 | include/pybind11/cast.h | |
+7 −0 | include/pybind11/detail/class.h | |
+15 −3 | include/pybind11/detail/common.h | |
+14 −1 | include/pybind11/detail/internals.h | |
+2 −0 | include/pybind11/embed.h | |
+14 −7 | include/pybind11/pybind11.h | |
+1 −1 | include/pybind11/pytypes.h | |
+9 −2 | include/pybind11/stl_bind.h | |
+6 −30 | pybind11/__init__.py | |
+1 −2 | pybind11/__main__.py | |
+1 −1 | pybind11/_version.py | |
+41 −27 | setup.py | |
+1 −1 | tests/constructor_stats.h | |
+26 −0 | tests/test_buffers.cpp | |
+31 −0 | tests/test_buffers.py | |
+20 −2 | tests/test_builtin_casters.cpp | |
+43 −0 | tests/test_builtin_casters.py | |
+3 −3 | tests/test_copy_move.py | |
+1 −0 | tests/test_exceptions.cpp | |
+4 −0 | tests/test_exceptions.py | |
+22 −0 | tests/test_stl_binders.cpp | |
+41 −0 | tests/test_stl_binders.py | |
+4 −4 | tools/FindPythonLibsNew.cmake | |
+1 −1 | tools/pybind11Tools.cmake |