1. 13 Aug, 2016 5 commits
  2. 04 Aug, 2016 1 commit
  3. 29 May, 2016 1 commit
  4. 19 May, 2016 1 commit
  5. 11 May, 2016 2 commits
  6. 05 May, 2016 2 commits
  7. 04 May, 2016 1 commit
    • Wenzel Jakob's avatar
      redesigned format_descriptor<> and npy_format_descriptor<> · 876eeab4
      Wenzel Jakob authored
      This somewhat heavyweight solution will avoid size_t/long long/long/int
      mismatches on various platforms once and for all. The previous template
      overloads could e.g. not handle size_t on Darwin.
      
      One gotcha: the 'format_descriptor<T>::value()' syntax changed to just
      'format_descriptor<T>::value'
      876eeab4
  8. 18 Apr, 2016 1 commit
  9. 20 Feb, 2016 2 commits
  10. 17 Jan, 2016 7 commits
  11. 28 Dec, 2015 1 commit
  12. 16 Dec, 2015 1 commit
  13. 15 Dec, 2015 1 commit
    • Jan Dohl's avatar
      Fixed py:array constructor from failing for complex types · ab92eb37
      Jan Dohl authored
      The array(const buffer_info &info) constructor fails when given
      complex types since their format string is 'Zd' or 'Zf' which has
      a length of two and causes an error here:
      
      if (info.format.size() != 1)
          throw std::runtime_error("Unsupported buffer format!");
      
      Fixed by allowing format sizes of one and two.
      ab92eb37
  14. 18 Oct, 2015 1 commit
  15. 15 Oct, 2015 1 commit
  16. 13 Oct, 2015 1 commit
  17. 04 Sep, 2015 1 commit
  18. 31 Jul, 2015 1 commit
  19. 29 Jul, 2015 1 commit
  20. 28 Jul, 2015 2 commits