An error occurred fetching the project authors.
  1. 08 Jun, 2018 1 commit
  2. 03 Mar, 2018 1 commit
  3. 28 Feb, 2018 1 commit
  4. 16 Feb, 2018 1 commit
  5. 09 Sep, 2017 1 commit
    • Stefan Behnel's avatar
      Attempt to use a faster exception value for return type annotations that check for exceptions. · a3ffd72f
      Stefan Behnel authored
      Inside of a module, it is safe to convert a function declared
          cdef int func() except *:
              ...
      
      into
      
          cdef int func() except? -1
      
      because a) we need an exception return value anyway and b) there will always be an explicit exception check afterwards. Thus, changing the function implementation itself is safe. We must exclude functions that are only declared but not implemented since we do not control their signature and it is not safe to assume a specific exception return value if it is not declared.
      a3ffd72f
  6. 03 Sep, 2017 1 commit
  7. 02 Sep, 2017 1 commit
  8. 03 Jul, 2017 2 commits
  9. 30 Jun, 2017 1 commit
  10. 29 Jun, 2017 1 commit
  11. 17 Jun, 2017 1 commit
    • Adrien Guinet's avatar
      Add a Pythran backend for Numpy operation · 65da9d1b
      Adrien Guinet authored
      When the user asked for it (thanks to the --np-pythran flag), use
      Pythran's Numpy implementation as a backend for numpy operation. This
      flag forces the C++ mode, as the Pythran implementation is written in
      C++. Distutils integration through the 'np_pythran' flag of the
      cythonize API is also provided.
      
      This commit also adds a Pythran mode for the tests, that can enable the
      pythran mode for the C++ tests, and allows the reuse of Cython tests to
      test for the Pythran integration.
      65da9d1b
  12. 27 May, 2017 1 commit
  13. 16 May, 2017 1 commit
  14. 21 Dec, 2016 1 commit
  15. 01 Sep, 2016 1 commit
  16. 31 Aug, 2016 1 commit
  17. 28 Jul, 2016 3 commits
  18. 21 Apr, 2016 1 commit
  19. 28 Mar, 2016 1 commit
  20. 22 Aug, 2015 1 commit
  21. 11 Aug, 2015 1 commit
  22. 10 Aug, 2015 1 commit
  23. 25 Jul, 2015 1 commit
  24. 20 Mar, 2015 1 commit
  25. 26 Feb, 2015 1 commit
  26. 31 Aug, 2014 1 commit
  27. 22 Aug, 2014 2 commits
  28. 06 Jul, 2014 1 commit
  29. 17 Jun, 2014 1 commit
  30. 23 May, 2014 1 commit
  31. 12 Apr, 2014 1 commit
  32. 24 Apr, 2014 1 commit
  33. 22 Apr, 2014 1 commit
  34. 07 Jan, 2014 1 commit
  35. 29 Dec, 2013 1 commit
  36. 06 Nov, 2013 1 commit
    • Stefan Behnel's avatar
      support bytearray as auto encoding string type · 8524b21f
      Stefan Behnel authored
      --HG--
      rename : tests/run/str_ascii_auto_encoding.pyx => tests/run/bytearray_ascii_auto_encoding.pyx
      rename : tests/run/str_default_auto_encoding.pyx => tests/run/bytearray_default_auto_encoding.pyx
      8524b21f