- 06 Sep, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 05 Sep, 2016 2 commits
-
-
Sergey Lyskov authored
-
Wenzel Jakob authored
-
- 29 Aug, 2016 1 commit
-
-
Jason Rhinelander authored
The documentation says the string-valued python function name goes after the C++ function, but it actually goes before it.
-
- 28 Aug, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 27 Aug, 2016 1 commit
-
-
Nickolai Belakovski authored
-
- 24 Aug, 2016 1 commit
-
-
Ivan Smirnov authored
-
- 22 Aug, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 19 Aug, 2016 3 commits
-
-
Dean Moldovan authored
Test compilation instructions for Windows were changed to use the `cmake --build` command line invocation which should be easier than manually setting up using the CMake GUI and Visual Studio.
-
Wenzel Jakob authored
-
Wenzel Jakob authored
-
- 18 Aug, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 17 Aug, 2016 1 commit
-
-
Glen Walker authored
For example keep_alive<0,1>() should work where the return value may sometimes be None. At present a "Could not allocate weak reference!" exception is thrown. Update documentation to clarify behaviour of keep_alive when nurse is None or does not support weak references.
-
- 15 Aug, 2016 1 commit
-
-
Dean Moldovan authored
The missing empty line after `.. code-block::` resulted in incorrectly parsed restructuredtext (sphinx warnings) and the code blocks were not generated in the html output. The `exclude_patterns` change just silences the orphaned file warning. [ci skip]
-
- 14 Aug, 2016 1 commit
-
-
Ivan Smirnov authored
-
- 13 Aug, 2016 7 commits
-
-
Ivan Smirnov authored
-
Ivan Smirnov authored
-
Ivan Smirnov authored
-
Ivan Smirnov authored
-
Ivan Smirnov authored
-
Ivan Smirnov authored
The format strings that are known at compile time are now accessible via both ::value and ::format(), and format strings for everything else is accessible via ::format(). This makes it backwards compatible.
-
Ivan Smirnov authored
-
- 12 Aug, 2016 1 commit
-
-
Jason Rhinelander authored
This allows exposing a dict-like interface to python code, allowing iteration over keys via: for k in custommapping: ... while still allowing iteration over pairs, so that you can also implement 'dict.items()' functionality which returns a pair iterator, allowing: for k, v in custommapping.items(): ... example-sequences-and-iterators is updated with a custom class providing both types of iteration.
-
- 10 Aug, 2016 2 commits
-
-
Jason Rhinelander authored
reference_internal requires an `instance` field to track the returned reference's parent, but that's just a duplication of what keep_alive<0,1> does, so use a keep alive to do this to eliminate the duplication.
-
Jason Rhinelander authored
It no longer applies since instances are now identified by both address and type.
-
- 05 Aug, 2016 2 commits
-
-
Jason Rhinelander authored
It was already pretty badly intrusive, but it also appears to make MSVC segfault. Rather than investigating and fixing it, it's easier to just remove it.
-
Jason Rhinelander authored
As discussed in #320. The adds a documentation block that mentions that the trampoline classes must provide overrides for both the classes' own virtual methods *and* any inherited virtual methods. It also provides a templated solution to avoiding method duplication. The example includes a third method (only mentioned in the "see also" section of the documentation addition), using multiple inheritance. While this approach works, and avoids code generation in deep hierarchies, it is intrusive by requiring that the wrapped classes use virtual inheritance, which itself is more instrusive if any of the virtual base classes need anything other than default constructors. As per the discussion in #320, it is kept as an example, but not suggested in the documentation.
-
- 04 Aug, 2016 3 commits
-
-
Jason Rhinelander authored
-
Jason Rhinelander authored
-
Jason Rhinelander authored
Functions returning specialized Eigen matrices like Eigen::DiagonalMatrix and Eigen::SelfAdjointView--which inherit from EigenBase but not DenseBase--isn't currently allowed; such classes are explicitly copyable into a Matrix (by definition), and so we can support functions that return them by copying the value into a Matrix then casting that resulting dense Matrix into a numpy.ndarray. This commit does exactly that.
-
- 01 Aug, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 19 Jul, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 18 Jul, 2016 2 commits
-
-
Jason Rhinelander authored
-
Wenzel Jakob authored
-
- 12 Jul, 2016 1 commit
-
-
Wenzel Jakob authored
-
- 11 Jul, 2016 3 commits
-
-
Wenzel Jakob authored
-
Wenzel Jakob authored
-
Pim Schellart authored
-
- 10 Jul, 2016 2 commits
-
-
Wenzel Jakob authored
-
Wenzel Jakob authored
-