- 24 Jun, 2018 3 commits
-
-
* Silence GCC8's -Wcast-function-type. See https://bugs.python.org/issue33012 and PRs linked therein.
Antony Lee committed -
It is useful not only to remember the python libs and includes but also the interpreter version in cache. If users call pybind11 throught `add_subdirectories` they will otherwise have no access to the selected interpreter version. The interpreter version is useful for downstream projects, e.g. to select default `lib/pythonX.Y/site-packages/` install paths.
Axel Huebl committed -
Khachajantc Michael committed
-
- 21 Jun, 2018 2 commits
-
-
Maciek Starzyk committed
-
Add missing python3 distutils on Debian "buster".
Axel Huebl committed
-
- 15 Jun, 2018 1 commit
-
-
If an exception is thrown during module initialization, the error_already_set destructor will try to call `get_internals()` *after* setting Python's error indicator, resulting in a `SystemError: ... returned with an error set`. Fix that by temporarily stashing away the error indicator in the destructor.
Antony Lee committed
-
- 24 May, 2018 1 commit
-
-
Antony Lee committed
-
- 18 May, 2018 1 commit
-
-
Fixes #1401
Jason Rhinelander committed
-
- 07 May, 2018 1 commit
-
-
Fixed typos (erroneous `;`) in `classes.rst`.
François Becker committed
-
- 06 May, 2018 3 commits
-
-
Fix a segfault when creating a 0-dimension, c-strides array.
Naotoshi Seo committed -
Found via `codespell`
luzpaz committed -
Tom de Geus committed
-
- 29 Apr, 2018 2 commits
-
-
Wenzel Jakob committed
-
Lori A. Burns committed
-
- 24 Apr, 2018 1 commit
-
-
David Caron committed
-
- 22 Apr, 2018 2 commits
-
-
When using pybind11 to bind enums on MSVC and warnings (/W4) enabled, the following warning pollutes builds. This fix renames one of the occurrences. pybind11\include\pybind11\pybind11.h(1398): warning C4459: declaration of 'self' hides global declaration pybind11\include\pybind11\operators.h(41): note: see declaration of 'pybind11::detail::self'
Wenzel Jakob committed -
Henry Schreiner committed
-
- 16 Apr, 2018 1 commit
-
-
Wenzel Jakob committed
-
- 14 Apr, 2018 1 commit
-
-
* Add basic support for tag-based static polymorphism Sometimes it is possible to look at a C++ object and know what its dynamic type is, even if it doesn't use C++ polymorphism, because instances of the object and its subclasses conform to some other mechanism for being self-describing; for example, perhaps there's an enumerated "tag" or "kind" member in the base class that's always set to an indication of the correct type. This might be done for performance reasons, or to permit most-derived types to be trivially copyable. One of the most widely-known examples is in LLVM: https://llvm.org/docs/HowToSetUpLLVMStyleRTTI.html This PR permits pybind11 to be informed of such conventions via a new specializable detail::polymorphic_type_hook<> template, which generalizes the previous logic for determining the runtime type of an object based on C++ RTTI. Implementors provide a way to map from a base class object to a const std::type_info* for the dynamic type; pybind11 then uses this to ensure that casting a Base* to Python creates a Python object that knows it's wrapping the appropriate sort of Derived. There are a number of restrictions with this tag-based static polymorphism support compared to pybind11's existing support for built-in C++ polymorphism: - there is no support for this-pointer adjustment, so only single inheritance is permitted - there is no way to make C++ code call new Python-provided subclasses - when binding C++ classes that redefine a method in a subclass, the .def() must be repeated in the binding for Python to know about the update But these are not much of an issue in practice in many cases, the impact on the complexity of pybind11's innards is minimal and localized, and the support for automatic downcasting improves usability a great deal.
oremanj committed
-
- 09 Apr, 2018 1 commit
-
-
Antony Lee committed
-
- 07 Apr, 2018 1 commit
-
-
The property returns the enum_ value as a string. For example: >>> import module >>> module.enum.VALUE enum.VALUE >>> str(module.enum.VALUE) 'enum.VALUE' >>> module.enum.VALUE.name 'VALUE' This is actually the equivalent of Boost.Python "name" property.
Boris Staletic committed
-
- 05 Apr, 2018 1 commit
-
-
As reported in #1349, clang before 3.5 can segfault on a function-local variable referenced inside a lambda. This moves the function-local static into a separate function that the lambda can invoke to avoid the issue. Fixes #1349
Jason Rhinelander committed
-
- 03 Apr, 2018 2 commits
-
-
Henry Schreiner committed
-
I think that there's the word "for" missing for that sentence to be correct. Please double-check that the sentence means what it's supposed to mean. :-)
Patrik Huber committed
-
- 11 Mar, 2018 1 commit
-
-
This reimplements the version check to avoid sscanf (which has reportedly started throwing warnings under MSVC, even when used perfectly safely -- #1314). It also extracts the mostly duplicated parts of PYBIND11_MODULE/PYBIND11_PLUGIN into separate macros.
Jason Rhinelander committed
-
- 10 Mar, 2018 4 commits
-
-
Jason Rhinelander committed
-
- PYBIND11_MAKE_OPAQUE now takes ... rather than a single argument and expands it with __VA_ARGS__; this lets templated, comma-containing types get through correctly. - Adds a new macro PYBIND11_TYPE() that lets you pass the type into a macro as a single argument, such as: PYBIND11_OVERLOAD(PYBIND11_TYPE(R<1,2>), PYBIND11_TYPE(C<3,4>), func) Unfortunately this only works for one macro call: to forward the argument on to the next macro call (without the processor breaking it up again) requires also adding the PYBIND11_TYPE(...) to type macro arguments in the PYBIND11_OVERLOAD_... macro chain. - updated the documentation with these two changes, and use them at a couple places in the test suite to test that they work.Jason Rhinelander committed -
Marc Schlaich committed
-
Apparently with homebrew the correct package for python3 is now just `python`; python 2 was relegated to 'python@2', and `python3` is an alias for `python` (which needs to be upgraded rather than installed).
Jason Rhinelander committed
-
- 28 Feb, 2018 2 commits
-
-
luz.paz committed
-
Tomas Babej committed
-
- 18 Feb, 2018 1 commit
-
-
This fixes the test code on big-endian architectures: the array support (PR #832) had hard-coded the little-endian '<' but we need to use '>' on big-endian architectures.
Jason Rhinelander committed
-
- 07 Feb, 2018 1 commit
-
-
Wenzel Jakob committed
-
- 06 Feb, 2018 1 commit
-
-
Wenzel Jakob committed
-
- 12 Jan, 2018 3 commits
-
-
Jason Rhinelander committed
-
This function already has a `using namespace detail`, so all the `detail::` qualifications are not needed.
Jason Rhinelander committed -
This updates the `py::init` constructors to only use brace initialization for aggregate initiailization if there is no constructor with the given arguments. This, in particular, fixes the regression in #1247 where the presence of a `std::initializer_list<T>` constructor started being invoked for constructor invocations in 2.2 even when there was a specific constructor of the desired type. The added test case demonstrates: without this change, it fails to compile because the `.def(py::init<std::vector<int>>())` constructor tries to invoke the `T(std::initializer_list<std::vector<int>>)` constructor rather than the `T(std::vector<int>)` constructor. By only using `new T{...}`-style construction when a `T(...)` constructor doesn't exist, we should bypass this by while still allowing `py::init<...>` to be used for aggregate type initialization (since such types, by definition, don't have a user-declared constructor).Jason Rhinelander committed
-
- 11 Jan, 2018 3 commits
-
-
* Fix segfault when reloading interpreter with external modules When embedding the interpreter and loading external modules in that embedded interpreter, the external module correctly shares its internals_ptr with the one in the embedded interpreter. When the interpreter is shut down, however, only the `internals_ptr` local to the embedded code is actually reset to nullptr: the external module remains set. The result is that loading an external pybind11 module, letting the interpreter go through a finalize/initialize, then attempting to use something in the external module fails because this external module is still trying to use the old (destroyed) internals. This causes undefined behaviour (typically a segfault). This commit fixes it by adding a level of indirection in the internals path, converting the local internals variable to `internals **` instead of `internals *`. With this change, we can detect a stale internals pointer and reload the internals pointer (either from a capsule or by creating a new internals instance). (No issue number: this was reported on gitter by @henryiii and @aoloe).
Jason Rhinelander committed -
Fix return from `std::map` bindings to `__delitem__`: we should be returning `void`, not an iterator. Also adds a test for map item deletion.
Jeff VanOss committed -
Found via `codespell`
luz.paz committed
-