Commit 1a8af15
1 parent c98896b commit 1a8af15
File tree
4 files changed
+4
-2
lines changed- .ci/pytorch
- third_party
- torch/csrc/distributed/rpc
4 files changed
+4
-2
lines changedOriginal file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
140 | 140 |
| |
141 | 141 |
| |
142 | 142 |
| |
143 |
| - | |
| 143 | + | |
144 | 144 |
| |
145 | 145 |
| |
146 | 146 |
| |
|
- .github/ISSUE_TEMPLATE/bug-report.yml+19-3
- .github/workflows/ci.yml+153-13
- .github/workflows/configure.yml+6-2
- .github/workflows/format.yml+2
- .github/workflows/labeler.yml+5-1
- .github/workflows/pip.yml+4-4
- .github/workflows/upstream.yml+2
- .gitignore+1
- .pre-commit-config.yaml+17-17
- CMakeLists.txt+2
- MANIFEST.in+1
- docs/advanced/exceptions.rst+6-3
- docs/advanced/misc.rst+37
- docs/changelog.rst+123-1
- docs/conf.py-1
- include/pybind11/attr.h+1-1
- include/pybind11/cast.h+9-5
- include/pybind11/detail/class.h+9-1
- include/pybind11/detail/common.h+82-34
- include/pybind11/detail/init.h+21-15
- include/pybind11/detail/internals.h+31-3
- include/pybind11/detail/type_caster_base.h+9
- include/pybind11/eigen.h+1-702
- include/pybind11/eigen/matrix.h+701
- include/pybind11/eigen/tensor.h+511
- include/pybind11/embed.h+80-42
- include/pybind11/functional.h+9-2
- include/pybind11/gil.h+4-4
- include/pybind11/numpy.h+13-12
- include/pybind11/options.h+16
- include/pybind11/pybind11.h+81-57
- include/pybind11/pytypes.h+42-22
- include/pybind11/stl_bind.h+107-47
- pybind11/__main__.py+7-1
- pybind11/_version.py+1-1
- pybind11/setup_helpers.py+3-4
- setup.cfg+2-2
- tests/CMakeLists.txt+29-4
- tests/conftest.py+25-1
- tests/eigen_tensor_avoid_stl_array.cpp+14
- tests/extra_python_package/test_files.py+7-3
- tests/test_builtin_casters.cpp+7-2
- tests/test_callbacks.cpp+37
- tests/test_callbacks.py+13
- tests/test_chrono.py-4
- tests/test_class.cpp+3-3
- tests/test_class.py+10-2
- tests/test_constants_and_functions.cpp+13-21
- tests/test_custom_type_casters.py+2-1
- tests/test_docstring_options.cpp+53
- tests/test_docstring_options.py+23
- tests/test_eigen_matrix.cpp+3-5
- tests/test_eigen_matrix.py+1-1
- tests/test_eigen_tensor.cpp+18
- tests/test_eigen_tensor.inl+333
- tests/test_eigen_tensor.py+290
- tests/test_embed/catch.cpp+1-3
- tests/test_embed/test_interpreter.cpp+70-3
- tests/test_exceptions.py+3-2
- tests/test_gil_scoped.py+2-2
- tests/test_kwargs_and_defaults.cpp+4-5
- tests/test_local_bindings.py+2-1
- tests/test_modules.py+4-5
- tests/test_numpy_array.cpp+2
- tests/test_numpy_array.py+6
- tests/test_operator_overloading.cpp+8-15
- tests/test_operator_overloading.py-1
- tests/test_pytypes.cpp+2
- tests/test_pytypes.py+6
- tests/test_stl_binders.py+26
- tests/test_virtual_functions.cpp+2-1
- tools/FindPythonLibsNew.cmake+4-2
- tools/make_changelog.py+4-5
- tools/pybind11Common.cmake+10
- tools/pybind11NewTools.cmake+2-2
- tools/pybind11Tools.cmake+1-1
- tools/setup_global.py.in+3-1
- tools/setup_main.py.in+2
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
141 | 141 |
| |
142 | 142 |
| |
143 | 143 |
| |
| 144 | + | |
144 | 145 |
| |
145 | 146 |
| |
146 | 147 |
| |
|
Original file line number | Diff line number | Diff line change | |
---|---|---|---|
| |||
| 1 | + |
0 commit comments