- 09 Oct, 2020 4 commits
-
-
* add support for LLVM compiler * Update include/pybind11/pybind11.h __forced_unwind libc++ vs libstdc++ Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com> Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Ahmed Sobhy committed -
* Update PGI to 20.9 Update PGI to 20.9 * Update ci.yml * Update ci.yml * Update README.rst * Update ci.yml Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
andriish committed -
* docs: FAQ CMake updates * docs: limitations * ci: don't over label * docs: update CHANGELOG, add a bit more structure * ci: label PRs with more labels, and sooner * docs: updates from @rwgk * docs: address @YannickJadoul's points
Henry Schreiner committed -
* Deprecated public constructors of module * Turn documentation comment of module_::add_object into valid doxygen documentation * Move definition of PYBIND11_DETAIL_MODULE_STATIC_DEF and PYBIND11_DETAIL_MODULE_CREATE macros up * Move detail::create_top_level_module to module_::create_extension_module, and unify Python 2 and 3 signature again * Throw error_already_set if module creation fails in module_::create_extension_module * Mention module_::create_extension_module in deprecation warning message of module_::module_
Yannick Jadoul committed
-
- 08 Oct, 2020 5 commits
-
-
* Check scope's __dict__ instead of using hasattr when registering classes and exceptions, to allow registering the same name in a derived class scope * Extend test_base_and_derived_nested_scope test * Add tests on error being thrown registering duplicate classes * Circumvent bug with combination of test_class.py::test_register_duplicate_class and test_factory_constructors.py::test_init_factory_alias
Yannick Jadoul committed -
* tests: Don't run tests that often segfault * tests: drop all cross module gil tests * tests: try skipping all macOS Python 3.9 tests * tests: drop macOS Python 3.9
Henry Schreiner committed -
jbarlow83 committed
-
* ci: skip cpptest on Win Py 3.8+ * docs: minor typo caught by @rwgk
Henry Schreiner committed -
* docs: minor cleanup * ci: fix add-path command * docs: add example of use in-place * Update .github/workflows/ci.yml
Henry Schreiner committed
-
- 06 Oct, 2020 2 commits
-
-
* fix: PYBIND11_OBJECT could only be used inside the pybind11 namespace (regression) * docs: add changelog for conversion protection change * ci: update to Python 3.9
Henry Schreiner committed -
* feat: add a priority overload with py::prepend * doc: fix wording as suggested by rwgk * feat: add get_pointer * refactor: is_prepended -> prepend (internal) * docs: suggestion from @wjakob * tests: add test covering get_pointer/set_pointer
Henry Schreiner committed
-
- 05 Oct, 2020 3 commits
-
-
Fail on passing py::object with wrong Python type to py::object subclass using PYBIND11_OBJECT macro (#2349) * Fail on passing py::object with wrong Python type to py::object subclass using PYBIND11_OBJECT macro * Split off test_non_converting_constructors from test_constructors * Fix test_as_type, as py::type constructor now throws an error itself if the argument is not a type * Replace tp_name access by pybind11::detail::get_fully_qualified_tp_name * Move forward-declaration of get_fully_qualified_tp_name to detail/common.h * Don't add the builtins module name in get_fully_qualified_tp_name for PyPy * Add PYBIND11_BUILTINS_MODULE macro, and use it in get_fully_qualified_tp_name
Yannick Jadoul committed -
* fix: find_import didn't work properly for classic tools * ci: fix all files not being checked in style run
Henry Schreiner committed -
* Remove code inside 'PYPY_VERSION_NUM < 0x06000000' preprocessor if branch * fix: more cleanup * Remove more references to PyPy 5.7 and 5.9 in the docs * Update comment on PyUnicode_UTF* in PyPy Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
Yannick Jadoul committed
-
- 04 Oct, 2020 1 commit
-
-
Yannick Jadoul committed
-
- 03 Oct, 2020 4 commits
-
-
* tests: New test for ctypes buffers (pybind#2502) * fix: fix buffer_info segfault on views with no stride (pybind11#2502) * Explicit conversions in buffer_info to make clang happy (pybind#2502) * Another explicit cast in buffer_info constructor for clang (pybind#2502) * Simpler implementation of buffer_info constructor from Py_buffer. * Move test_ctypes_buffer into test_buffers * Comment on why view->strides may be NULL (and fix some whitespace) * Use c_strides() instead of zero when view->strides is NULL. c_strides and f_strides are moved from numpy.h (py::array) to buffer_info.h (py::detail) so they can be used from the buffer_info Py_buffer constructor. * Increase ctypes buffer test coverage in test_buffers. * Split ctypes tests and skip one which is broken in PyPy2.
Fritz Reese committed -
* WIP: module -> module_ without typedef * refactor: allow py::module to work again
Henry Schreiner committed -
Henry Schreiner committed
-
* feat: import check as a common function * docs: add cmake to docs
Henry Schreiner committed
-
- 02 Oct, 2020 12 commits
-
-
Henry Schreiner committed
-
Co-authored-by: Hyrum Wright <hwright@google.com>
Hyrum Wright committed -
Henry Schreiner committed
-
Henry Schreiner committed
-
* Allow function/functor passed to py::vectorize to return void * Stealing @sizmailov's test and fixing unused argument warning * Add missing std::move() RVO doesn't work here because function return type is different from actual returned type * remove extra EOL * docs: add a few details * chore: pre-commit autoupdate * Remove array_iterator, array_begin, and array_end (in detail namespace) Co-authored-by: Sergei Izmailov <sergei.a.izmailov@gmail.com> Co-authored-by: Henry Schreiner <henryschreineriii@gmail.com>
Yannick Jadoul committed -
Add unchecked_reference::operator() and operator[] to overload resolution of unchecked_mutable_reference (#2514)
Yannick Jadoul committed -
* Add tests demonstrating the problem with deregistering pybind11 instances * Fix deregistering of different pybind11 instance from internals Co-authored-by: Yannick Jadoul <yannick.jadoul@belgacom.net> Co-authored-by: Blistic <wots_wot@hotmail.com>
Riyaz Haque committed -
Henry Schreiner committed
-
Unify Python 2 & 3 py::module constructor, and make contructor with pre-allocated PyModuleDef private (#2534)
Yannick Jadoul committed -
Henry Schreiner committed
-
Co-authored-by: Henry Schreiner <HenrySchreinerIII@gmail.com>
Boris Staletic committed -
Moving tp_class access, and consistent fully-qualified naming for PyPy, to detail::get_tp_name (#2520) * Moving tp_class access, and consistent fully-qualified naming for PyPy, to detail::get_tp_name * Change get_tp_name to get_fully_qualified_tp_name
Yannick Jadoul committed
-
- 30 Sep, 2020 7 commits
-
-
On very incomplete python installations (e.g. within Docker), it's possible that distutils is not installed. In that case, the ``execute_command`` statement that queries distutils for the Python module extension fails, and pybind11 uses the empty string. This commit adds an extra check that causes a CMake failure with more actionable information (just spent a lot of time trying to track down this problem :))
Wenzel Jakob committed -
Henry Schreiner committed
-
Henry Schreiner committed
-
Henry Schreiner committed
-
Henry Schreiner committed
-
Henry Schreiner committed
-
* ci: releases * docs: minor update form @wjakob * fix: enforce reasonable version of setuptools
Henry Schreiner committed
-
- 27 Sep, 2020 1 commit
-
-
* Initializing PyModuleDef object with PyModuleDef_HEAD_INIT. Python 3.8 documentation: m_base - Always initialize this member to PyModuleDef_HEAD_INIT. Long-standing (since first github commit in 2015), inconsequential bug. Also removing inconsequential Py_INCREF(def): PyModule_Create() resets the reference count to 1. * git rebase master * moving static PyModuleDef declaration to global scope, as requested by @wjakob * renaming the two new macros, to start with PYBIND11_DETAIL_MODULE
Ralf W. Grosse-Kunstleve committed
-
- 22 Sep, 2020 1 commit
-
-
Fixed in #2510 but reintroduced on one line by #2126
Henry Schreiner committed
-