1. 20 Jan, 2016 2 commits
  2. 19 Jan, 2016 2 commits
    • Wenzel Jakob's avatar
      Merge pull request #71 from ax3l/fix-strBuild2 · 9dcb1c3b
      Wenzel Jakob authored
      Fix Compile Error: str Naming
      9dcb1c3b
    • Axel Huebl's avatar
      Fix Compile Error: str Naming · 7cd569c7
      Axel Huebl authored
      This fixes a build error compiling with `nvcc/7.5` + `gcc/4.9.2`
      causing a
      ```
      ./include/pybind11/pybind11.h(952): here
      
      ./include/pybind11/pytypes.h: In member function ‘pybind11::str pybind11::handle::str() const’:
      ./include/pybind11/pytypes.h:269:8: error: expected primary-expression before ‘class’
           return pybind11::str(str, false);
              ^
      ./include/pybind11/pytypes.h:269:8: error: expected ‘;’ before ‘class’
      ./include/pybind11/pytypes.h:269:8: error: expected primary-expression before ‘class’
      ```
      7cd569c7
  3. 18 Jan, 2016 4 commits
  4. 17 Jan, 2016 29 commits
  5. 10 Jan, 2016 1 commit
  6. 06 Jan, 2016 1 commit
  7. 02 Jan, 2016 1 commit
    • Tomasz Miąsko's avatar
      Use object class to hold partially converted python objects. · ca77130b
      Tomasz Miąsko authored
      Using object class to hold converted object automatically deallocates
      object if an exception is thrown or scope is left before constructing
      complete Python object.
      
      Additionally added method object::release() that allows to release
      ownership of python object without decreasing its reference count.
      ca77130b