- 10 Jun, 2019 1 commit
-
-
* Added note regarding make install
nstelzen committed
-
- 12 May, 2019 3 commits
-
-
* Fixing order of arguments in call to PyErr_GivenExceptionMatches in pybind11::error_already_set.matches * Added tests on error_already_set::matches fix for exception base classes
Yannick Jadoul committed -
Since the module is named FindPythonLibsNew, PythonLibsNew_FOUND should be set appropriately.
Jamie Snape committed -
Boris Staletic committed
-
- 03 May, 2019 1 commit
-
-
martinRenou committed
-
- 07 Apr, 2019 2 commits
-
-
Henry Schreiner committed
-
Henry Schreiner committed
-
- 06 Apr, 2019 1 commit
-
-
* Fix warning that not including a cmake source or build dir will be a fatal error (it is now on newest CMakes) * Fixes appveyor * Travis uses CMake 3.9 for more than a year now * Travis dropped sudo: false in December * Dropping Sphinx 2 - clang7: Suppress self-assign warnings; fix missing virtual dtors - pypy: - Keep old version (newer stuff breaks) - Pin packages to extra index for speed - travis: - Make docker explicit; remove docker if not needed - Make commands more verbose (for debugging / repro) - Make Ubuntu dist explicit per job - Fix Windows - Add names to travisHenry Schreiner committed
-
- 04 Feb, 2019 5 commits
-
-
Wenzel Jakob committed
-
Wenzel Jakob committed
-
Wenzel Jakob committed
-
Guilhem Saurel committed
-
- 03 Jan, 2019 3 commits
-
-
Yannick Jadoul committed
-
Boris Staletic committed
-
Boris Staletic committed
-
- 01 Dec, 2018 1 commit
-
-
This avoids GIL deadlocking when pybind11 tries to acquire the GIL in a thread that already acquired it using standard Python API (e.g. when running from a Python thread).
Borja Zarco committed
-
- 20 Nov, 2018 1 commit
-
-
Baljak committed
-
- 16 Nov, 2018 2 commits
-
-
[ci skip]
Wenzel Jakob committed -
* Adds std::deque to the types supported by list_caster in stl.h. * Adds a new test_deque test in test_stl.{py,cpp}. * Updates the documentation to include std::deque as a default supported type.voxmea committed
-
- 13 Nov, 2018 1 commit
-
-
* Add possible solution to ImportError issue
Ahuva Kroizer committed
-
- 11 Nov, 2018 3 commits
-
-
Karl Haubenwallner committed
-
* Check default holder -Recognize "std::unique_ptr<T, D>" as a default holder even if "D" doesn't match between base and derived holders * Add test for unique_ptr<T, D> change
Trevor Laughlin committed -
Pybind11 provides a cast operator between opaque void* pointers on the C++ side and capsules on the Python side. The py::cast<void *> expression was not aware of this possibility and incorrectly triggered a compile-time assertion ("Unable to cast type to reference: value is local to type caster") that is now fixed.Wenzel Jakob committed
-
- 09 Nov, 2018 3 commits
-
-
* Support C++17 aligned new statement This patch makes pybind11 aware of nonstandard alignment requirements in bound types and passes on this information to C++17 aligned 'new' operator. Pre-C++17, the behavior is unchanged.
Wenzel Jakob committed -
Wenzel Jakob committed
-
This PR brings the std::array<> caster in sync with the other STL type casters: to accept an arbitrary sequence as input (rather than a list, which is too restrictive).
Wenzel Jakob committed
-
- 03 Nov, 2018 1 commit
-
-
Michał Wawrzyniec Urbańczyk committed
-
- 01 Nov, 2018 1 commit
-
-
Add a detailed link to Python 3 documentation. Add a caveat about the program terminating if initializing the interpreter fails.
Josh Kelley committed
-
- 24 Oct, 2018 4 commits
-
-
* Issue #1532: Incompatible config options, /MP vs /Gm for MSVC in DEBUG
Rune Paamand committed -
Wenzel Jakob committed
-
Tarcísio Fischer committed
-
Ryota Suzuki committed
-
- 14 Oct, 2018 1 commit
-
-
cdyson37 committed
-
- 11 Oct, 2018 1 commit
-
-
* Fix for Issue #1258 list_caster::load method will now check for a Python string and prevent its automatic conversion to a list. This should fix the issue "pybind11/stl.h converts string to vector<string> #1258" (https://github.com/pybind/pybind11/issues/1258) * Added tests for fix of issue #1258 * Changelog: stl string auto-conversion
Allan Leal committed
-
- 10 Oct, 2018 1 commit
-
-
Henry Schreiner committed
-
- 02 Oct, 2018 1 commit
-
-
Jason Rhinelander committed
-
- 27 Sep, 2018 1 commit
-
-
* Update iostream.h: Changed a local varname 'self' to 'self_' Avoiding conflicts in namespace pybind11::self. https://github.com/pybind/pybind11/issues/1531
Rune Paamand committed
-
- 25 Sep, 2018 1 commit
-
-
* Fix potential crash when calling an overloaded function The crash would occur if: - dispatcher() uses two-pass logic (because the target is overloaded and some arguments support conversions) - the first pass (with conversions disabled) doesn't find any matching overload - the second pass does find a matching overload, but its return value can't be converted to Python The code for formatting the error message assumed `it` still pointed to the selected overload, but during the second-pass loop `it` was nullptr. Fix by setting `it` correctly if a second-pass call returns a nullptr `handle`. Add a new test that segfaults without this fix. * Make overload iteration const-correct so we don't have to iterate again on second-pass error * Change test_error_after_conversions dependencies to local classes/variables
oremanj committed
-
- 14 Sep, 2018 1 commit
-
-
Davis E. King committed
-