This repository was archived by the owner on Mar 3, 2024. It is now read-only.
5 files changed
+24
-8
lines changed+18-4
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
21 | 21 |
| |
22 | 22 |
| |
23 | 23 |
| |
| 24 | + | |
24 | 25 |
| |
25 | 26 |
| |
| 27 | + | |
26 | 28 |
| |
27 | 29 |
| |
28 | 30 |
| |
29 |
| - | |
| 31 | + | |
30 | 32 |
| |
31 | 33 |
| |
32 | 34 |
| |
| |||
36 | 38 |
| |
37 | 39 |
| |
38 | 40 |
| |
| 41 | + | |
| 42 | + | |
| 43 | + | |
| 44 | + | |
| 45 | + | |
| 46 | + | |
| 47 | + | |
| 48 | + | |
| 49 | + | |
39 | 50 |
| |
40 | 51 |
| |
41 | 52 |
| |
| |||
57 | 68 |
| |
58 | 69 |
| |
59 | 70 |
| |
| 71 | + | |
60 | 72 |
| |
61 | 73 |
| |
62 | 74 |
| |
| |||
68 | 80 |
| |
69 | 81 |
| |
70 | 82 |
| |
71 |
| - | |
| 83 | + | |
| 84 | + | |
| 85 | + | |
72 | 86 |
| |
73 |
| - | |
74 |
| - | |
| 87 | + | |
| 88 | + | |
75 | 89 |
| |
76 | 90 |
| |
77 | 91 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
1 | 1 |
| |
2 | 2 |
| |
| 3 | + | |
| 4 | + |
+1-1
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
6 | 6 |
| |
7 | 7 |
| |
8 | 8 |
| |
9 |
| - | |
| 9 | + | |
10 | 10 |
| |
11 | 11 |
| |
12 | 12 |
| |
|
- .github/workflows/ci.yml+72-16
- .github/workflows/configure.yml+13-5
- .github/workflows/format.yml+3
- .github/workflows/labeler.yml+5
- .github/workflows/pip.yml+8-4
- .github/workflows/upstream.yml+39-37
- .pre-commit-config.yaml+54-50
- CMakeLists.txt+7-5
- MANIFEST.in+1-1
- README.rst+1-1
- SECURITY.md+13
- docs/advanced/cast/strings.rst+7-3
- docs/advanced/embedding.rst+1-1
- docs/changelog.rst+133-3
- docs/classes.rst+14
- docs/compiling.rst+6-3
- docs/faq.rst+2-1
- docs/release.rst+6-4
- docs/upgrade.rst+14
- include/pybind11/attr.h+14-2
- include/pybind11/buffer_info.h+16-1
- include/pybind11/cast.h+35-3
- include/pybind11/detail/common.h+27-8
- include/pybind11/detail/descr.h+13
- include/pybind11/detail/init.h+2-2
- include/pybind11/detail/internals.h+51-9
- include/pybind11/detail/type_caster_base.h+184-26
- include/pybind11/eigen/common.h+9
- include/pybind11/eigen/matrix.h+13
- include/pybind11/eigen/tensor.h+5
- include/pybind11/embed.h+4-6
- include/pybind11/numpy.h+12-6
- include/pybind11/pybind11.h+14-6
- include/pybind11/pytypes.h+99-29
- include/pybind11/stl.h+4-4
- include/pybind11/stl_bind.h+5-3
- include/pybind11/type_caster_pyobject_ptr.h+61
- pybind11/_version.py+1-1
- pybind11/setup_helpers.py+4-9
- pyproject.toml+11-8
- setup.cfg+1
- setup.py+1-1
- tests/CMakeLists.txt+8-7
- tests/conftest.py+4-5
- tests/extra_python_package/test_files.py+3
- tests/requirements.txt+1-1
- tests/test_buffers.cpp+35
- tests/test_buffers.py+57
- tests/test_class.cpp+1-1
- tests/test_cmake_build/CMakeLists.txt-3
- tests/test_cmake_build/installed_embed/CMakeLists.txt+4-4
- tests/test_cmake_build/installed_function/CMakeLists.txt+4-4
- tests/test_cmake_build/installed_target/CMakeLists.txt+4-4
- tests/test_cmake_build/subdirectory_embed/CMakeLists.txt+4-4
- tests/test_cmake_build/subdirectory_function/CMakeLists.txt+4-4
- tests/test_cmake_build/subdirectory_target/CMakeLists.txt+4-4
- tests/test_constants_and_functions.cpp+3
- tests/test_constants_and_functions.py+4
- tests/test_copy_move.cpp+238
- tests/test_embed/test_interpreter.cpp+11-11
- tests/test_exceptions.py+28-3
- tests/test_iostream.py+29-29
- tests/test_methods_and_attributes.cpp+34
- tests/test_methods_and_attributes.py+9
- tests/test_modules.py-1
- tests/test_numpy_array.cpp+26
- tests/test_numpy_array.py+71
- tests/test_pytypes.cpp+9
- tests/test_pytypes.py+14-1
- tests/test_stl.py+6-3
- tests/test_stl_binders.cpp+44
- tests/test_stl_binders.py+18
- tests/test_type_caster_pyobject_ptr.cpp+130
- tests/test_type_caster_pyobject_ptr.py+104
- tests/test_unnamed_namespace_a.cpp+38
- tests/test_unnamed_namespace_a.py+34
- tests/test_unnamed_namespace_b.cpp+13
- tests/test_unnamed_namespace_b.py+5
- tests/test_vector_unique_ptr_member.cpp+54
- tests/test_vector_unique_ptr_member.py+14
- tools/pybind11Common.cmake+18-8
- tools/pybind11Config.cmake.in+3-1
+2-2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
28 | 28 |
| |
29 | 29 |
| |
30 | 30 |
| |
31 |
| - | |
| 31 | + | |
32 | 32 |
| |
33 | 33 |
| |
34 | 34 |
| |
| |||
56 | 56 |
| |
57 | 57 |
| |
58 | 58 |
| |
59 |
| - | |
| 59 | + | |
60 | 60 |
| |
61 | 61 |
| |
62 | 62 |
| |
|
0 commit comments