Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
python
/
pybind11
/
e07f75839ddba5e41a7c22cf1dddc73ddc1ce5ad
e07f758
Implicit conversions to bool + np.bool_ conversion (#925)
by Ivan Smirnov
· 7 years ago
a03408c
Add support custom sized operator deletes (#952)
by Jason Rhinelander
· 7 years ago
7c0e2c2
Document automatic upcasting of polymorphic types (#654)
by Dustin Spicuzza
· 7 years ago
2e37fe0
Fix compatibility of FindPythonLibsNew.cmake and FindPythonLibs.cmake
by Dean Moldovan
· 7 years ago
cb3d406
Fix refcounting for tp_base objects of new types (#950)
by bennorth
· 7 years ago
60526d4
Support `take_ownership` for custom type casters given a pointer
by Jason Rhinelander
· 7 years ago
67a0cc4
Fix regression: container pointers not castable
by Jason Rhinelander
· 7 years ago
fad5d33
Detect c++ standard unconditionally
by Jason Rhinelander
· 7 years ago
6b51619
Fix test suite under MSVC/Debug
by Jason Rhinelander
· 7 years ago
a403d0e
Fix past-the-end dereference in values_and_holders
by Jason Rhinelander
· 7 years ago
fd47779
travis-ci: Switch debian:buster build to python 3.6
by Jason Rhinelander
· 7 years ago
706a7d9
Fix compilation with Intel's compiler
by Dean Moldovan
· 7 years ago
b57281b
Use rvalue subcasting when casting an rvalue container
by Jason Rhinelander
· 7 years ago
897d716
Combine std::tuple/std::pair logic
by Jason Rhinelander
· 7 years ago
23bf894
Override deduced Base class when defining Derived methods
by Jason Rhinelander
· 8 years ago
259b2fa
Fix unsigned error value casting
by Jason Rhinelander
· 7 years ago
30f6c3b
Fix indirect loading of Eigen::Ref
by Dean Moldovan
· 7 years ago
af2dda3
Add a life support system for type_caster temporaries
by Dean Moldovan
· 7 years ago
6b442ff
`python -m pybind11 --includes` prints include paths
by Ivan Smirnov
· 7 years ago
34b7b54
Add tests for passing STL containers by pointer
by Andreas Bergmeier
· 8 years ago
c67033a
Move test_cmake_build target code into its subdirectory
by Dean Moldovan
· 7 years ago
0bc272b
Move tests from short translation units into their logical parents
by Dean Moldovan
· 7 years ago
83e328f
Split test_python_types.cpp into builtin_casters, stl and pytypes
by Dean Moldovan
· 7 years ago
bdfb50f
Move tests from test_issues.cpp/py into appropriate files
by Dean Moldovan
· 7 years ago
44e9a4e
travis-ci: switch gcc-7 build to buster, remove from allow_failures
by Jason Rhinelander
· 7 years ago
2bde615
Fix invalid reference definition in string conversion docs
by Dean Moldovan
· 7 years ago
cd2d3ad
Fix embedded threads test on MSVC2015 / Python 2.7
by Dean Moldovan
· 7 years ago
9d698f7
Hold strong references to keep_alive patients
by Bruce Merry
· 7 years ago
2196696
Use std::type_info::name() for type lookups outside stdlibc++
by Jason Rhinelander
· 7 years ago
2d6116b
Fix GIL release and acquire when embedding the interpreter
by Dean Moldovan
· 7 years ago
f42af24
Support std::string_view when compiled under C++17
by Jason Rhinelander
· 7 years ago
220a77f
Endian wording fix
by Jason Rhinelander
· 7 years ago
aee409d
Fix strings.rst style
by Jason Rhinelander
· 7 years ago
ce7024f
Fix linker issue with move constructors on MSVC
by Dean Moldovan
· 7 years ago
24dec80
Help CLion IDE evaluate PYBIND11_NUMPY_DTYPE
by Dean Moldovan
· 7 years ago
e067c58
Switch debian docker images to stretch
by Jason Rhinelander
· 7 years ago
13d8cd2
add the capsule name to the py::capsule constructor
by Philip Austin
· 7 years ago
28f3df7
Fix typo in embedding.rst
by Ian Bell
· 7 years ago
d080f83
Make check-style.sh work on stock macOS
by Jason Rhinelander
· 7 years ago
404bcf2
travis-ci: clang 4.0: install and use ldd-4.0
by Jason Rhinelander
· 7 years ago
2cc1916
Upgrade pypy to 5.8, use pre-built numpy/scipy wheels
by Jason Rhinelander
· 7 years ago
e45c211
Support multiple inheritance from python
by Jason Rhinelander
· 8 years ago
caedf74
Fix py::make_iterator's __next__() for past-the-end calls
by Dean Moldovan
· 7 years ago
17cc39c
Don't let pytest discover tests from test_cmake_build and test_embed
by Dean Moldovan
· 7 years ago
74b501c
Fix passing in utf8 encoded strings with python 2
by Ben Frederickson
· 7 years ago
0365d49
Remove feature macro for <experimental/optional>
by Jason Rhinelander
· 7 years ago
e27ea47
Enable detection of private operator new on MSVC
by Dean Moldovan
· 7 years ago
6223b18
Update basics.rst
by Matthew Chan
· 7 years ago
4edb1ce
Destroy internals if created during Py_Finalize()
by Jason Rhinelander
· 7 years ago
ef2dfd4
Tweak GitHub issue template
by Dean Moldovan
· 7 years ago
1d3c4bc
Fix missing default globals in eval/exec when embedding
by Dean Moldovan
· 7 years ago
91bbe2f
Explicitly define copy/move constructors for accessor
by eirrgang
· 7 years ago
8f6c129
Fix CMake example code in embedding docs
by Dean Moldovan
· 7 years ago
acedd6c
std::reference_wrapper: non-generic types; no None
by Jason Rhinelander
· 8 years ago
7cdf9f1
Move reference_wrapper test from test_issues to test_python_types
by Jason Rhinelander
· 8 years ago
005fde6
Filter warnings on pytest >= v3.1
by Dean Moldovan
· 7 years ago
443ab59
Replace PYBIND11_PLUGIN with PYBIND11_MODULE
by Dean Moldovan
· 8 years ago
b700c5d
Convenience constructor templates for buffer_info (#860)
by Yannick Jadoul
· 7 years ago
427e4af
Fix buffer protocol inheritance
by Dean Moldovan
· 7 years ago
6d2411f
Add tutorial page for embedding the interpreter
by Dean Moldovan
· 8 years ago
931b9e9
Support restarting the interpreter and subinterpreters
by Dean Moldovan
· 8 years ago
22c413b
Add C++ interface for the Python interpreter
by Dean Moldovan
· 8 years ago
9693a5c
Add Catch framework for testing embedding support and C++-side features
by Dean Moldovan
· 8 years ago
7f5c85c
Add CMake target for embedding the Python interpreter
by Dean Moldovan
· 8 years ago
46dbee7
Avoid explicitly resetting a std::[experimental::]optional
by Bruce Merry
· 7 years ago
4f9ee6e
Fix exception reference error
by Jason Rhinelander
· 7 years ago
39b9e04
Correct error in numpy.rst
by chenzy
· 7 years ago
eee4f4f
Fix invalid memory access in vector insert method
by Bruce Merry
· 7 years ago
6a0f6c4
Fix quadratic-time behaviour of vector extend
by Bruce Merry
· 7 years ago
8dc63ba
Force MSVC to compile in utf-8 mode
by Jason Rhinelander
· 7 years ago
f3ce00e
vectorize: pass-through of non-vectorizable args
by Jason Rhinelander
· 8 years ago
41f8da4
array_t: make c_style/f_style work for array creation
by Jason Rhinelander
· 8 years ago
129a725
Add and use detail::remove_reference_t
by Jason Rhinelander
· 8 years ago
926e2cf
Add PYBIND11_EXPAND_SIDE_EFFECTS macro
by Jason Rhinelander
· 8 years ago
4e1e4a5
Allow py::arg().none(false) argument attribute
by Jason Rhinelander
· 8 years ago
813d7e8
Add movable cast support to type casters
by Jason Rhinelander
· 8 years ago
fe0cf8b
Support pointers to member functions in def_buffer.
by Bruce Merry
· 8 years ago
37b2383
Style cleanup of javadoc-style comments
by Jason Rhinelander
· 7 years ago
b8ac438
Use dynamic cast for shared_from_this holder init
by Jason Rhinelander
· 8 years ago
35998a0
Define both __div__ and __truediv__ for Python 2
by Jason Rhinelander
· 7 years ago
1ac51a0
Minor operators.h style cleanups
by Jason Rhinelander
· 7 years ago
acad05c
Fix /= operator under Python 3
by Jason Rhinelander
· 7 years ago
d2da33a
static_assert should be testing ssize_t not size_t
by Jason Rhinelander
· 7 years ago
a4d0d95
Make static internals ptr pybind version specific
by Jason Rhinelander
· 8 years ago
731a9f6
Fix Py_buffer leak on GetBuffer failure
by Jason Rhinelander
· 8 years ago
4567f1f
Fix Eigen shape assertion error in dense matrix caster
by Dean Moldovan
· 8 years ago
94d0a9f
Improve constructor resolution in variant_caster
by Dean Moldovan
· 8 years ago
93e3eac
Defer None loading to second pass
by Jason Rhinelander
· 8 years ago
7fb01ec
Fix gcc 7 warning
by Jason Rhinelander
· 8 years ago
b82c0f0
Allow std::complex field with PYBIND11_NUMPY_DTYPE (#831)
by Bruce Merry
· 8 years ago
8e0d832
Support arrays inside PYBIND11_NUMPY_DTYPE (#832)
by Bruce Merry
· 8 years ago
78f1dcf
Fix std::nullptr_t caster (#840)
by Dean Moldovan
· 8 years ago
77710ff
Make PYBIND11_CPP_STANDARD work under MSVC
by Jason Rhinelander
· 8 years ago
ca0e82b
Update PYBIND11_CPP1{4,7} macros for MSVC
by Jason Rhinelander
· 8 years ago
d15b217
Only disable -Wnoexcept-type on gcc >= 7
by Jason Rhinelander
· 8 years ago
616e3d8
attr.h: Fix header copy-and-paste typo
by Jason Rhinelander
· 8 years ago
88ebc49
gcc 7 disable warning
by Jason Rhinelander
· 8 years ago
076c738
Add py::exec() as a shortcut for py::eval<py::eval_statements>()
by Dean Moldovan
· 8 years ago
0c4e037
Improve PYBIND11_DEPRECATED by showing the message on all compilers
by Dean Moldovan
· 8 years ago
36f0a15
Deprecate handle::operator== in favor of object_api::is
by Dean Moldovan
· 8 years ago
Next »