- 30 Sep, 2016 1 commit
-
-
Wenzel Jakob committed
-
- 29 Sep, 2016 3 commits
-
-
Wenzel Jakob committed
-
Simplify base class detection for Eigen types
Wenzel Jakob committed -
Dean Moldovan committed
-
- 27 Sep, 2016 6 commits
-
-
Wenzel Jakob committed
-
Add in casts for c++11s chrono classes to pythons datetime
Wenzel Jakob committed -
Trent Houliston committed
-
Trent Houliston committed
-
Trent Houliston committed
-
Wenzel Jakob committed
-
- 26 Sep, 2016 1 commit
-
-
Make the accessor interface more complete
Wenzel Jakob committed
-
- 23 Sep, 2016 3 commits
-
-
`auto var = l[0]` has a strange quirk: `var` is actually an accessor and not an object, so any later assignment of `var = ...` would modify l[0] instead of `var`. This is surprising compared to the non-auto assignment `py::object var = l[0]; var = ...`. By overloading `operator=` on lvalue/rvalue, the expected behavior is restored even for `auto` variables.
Dean Moldovan committed -
Dean Moldovan committed
-
Dean Moldovan committed
-
- 22 Sep, 2016 4 commits
-
-
This also adds the `hasattr` and `getattr` functions which are needed with the new attribute behavior. The new functions behave exactly like their Python counterparts. Similarly `object` gets a `contains` method which calls `__contains__`, i.e. it's the same as the `in` keyword in Python.
Dean Moldovan committed -
Dean Moldovan committed
-
Use consistent indentation and typenames in numpy vectorize.
Wenzel Jakob committed -
Dzhelil Rufat committed
-
- 21 Sep, 2016 4 commits
-
-
Fix minor documentation spelling mistakes
Wenzel Jakob committed -
Jason Rhinelander committed
-
Wenzel Jakob committed
-
Wenzel Jakob committed
-
- 20 Sep, 2016 2 commits
-
-
Fix missing smart_ptr test
Wenzel Jakob committed -
Dean Moldovan committed
-
- 19 Sep, 2016 6 commits
-
-
WIP: Multiple inheritance support
Wenzel Jakob committed -
Wenzel Jakob committed
-
Wenzel Jakob committed
-
Wenzel Jakob committed
-
Wenzel Jakob committed
-
Wenzel Jakob committed
-
- 17 Sep, 2016 1 commit
-
-
Wenzel Jakob committed
-
- 16 Sep, 2016 1 commit
-
-
The custom exception handling added in PR #273 is robust, but is overly complex for declaring the most common simple C++ -> Python exception mapping that needs only to copy `what()`. This add a simpler `py::register_exception<CppExp>(module, "PyExp");` function that greatly simplifies the common basic case of translation of a simple CppException into a simple PythonException, while not removing the more advanced capabilities of defining custom exception handlers.
Jason Rhinelander committed
-
- 14 Sep, 2016 1 commit
-
-
Fix spaces before parens for style guide.
Trent Houliston committed
-
- 13 Sep, 2016 7 commits
-
-
Allowed durations and non system clocks to be set from floats.
Trent Houliston committed -
Trent Houliston committed
-
Trent Houliston committed
-
Trent Houliston committed
-
Add unit tests and documentation for the chrono cast.
Trent Houliston committed -
Trent Houliston committed
-
Debug build and fix
Wenzel Jakob committed
-