An error occurred fetching the project authors.
  1. 08 Jan, 2019 1 commit
  2. 30 Oct, 2018 1 commit
    • Nicolas Pauss's avatar
      2685_warn_undeclared: fix undeclared type warnings for unpickle variables. · a12dab85
      Nicolas Pauss authored
      The types of variables __pyx_PickleError, __pyx_result from generated
      unpickle function, and variables state, _dict from __reduce_cython__
      generated method were not declared.
      So warnings were raised with warn.undeclared for every single extension
      type.
      
      Now, we define the type of these variables, and no warnings are raised.
      a12dab85
  3. 27 Oct, 2018 1 commit
    • Nicolas Pauss's avatar
      2685_warn_undeclared: fix undeclared type warnings for unpickle variables. · e5576436
      Nicolas Pauss authored
      The types of variables __pyx_PickleError, __pyx_result from generated
      unpickle function, and variables state, _dict from __reduce_cython__
      generated method were not declared.
      So warnings were raised with warn.undeclared for every single extension
      type.
      
      Now, we define the type of these variables, and no warnings are raised.
      e5576436
  4. 22 Sep, 2018 2 commits
  5. 19 Sep, 2018 1 commit
  6. 14 Sep, 2018 1 commit
  7. 25 Aug, 2018 1 commit
  8. 23 Jul, 2018 1 commit
  9. 21 Jul, 2018 1 commit
  10. 04 Jun, 2018 1 commit
  11. 03 Jun, 2018 2 commits
  12. 10 May, 2018 1 commit
  13. 28 Feb, 2018 1 commit
  14. 15 Dec, 2017 1 commit
  15. 16 Nov, 2017 1 commit
  16. 31 Oct, 2017 1 commit
  17. 17 Oct, 2017 1 commit
    • Unknown's avatar
      Trivial typo fixes · 4f237620
      Unknown authored
      Most are non-user facing. 
      Found using:
      `codespell -d -q 3`
      4f237620
  18. 15 Oct, 2017 2 commits
  19. 07 Oct, 2017 1 commit
  20. 03 Oct, 2017 1 commit
  21. 20 Sep, 2017 1 commit
    • Stefan Behnel's avatar
      Make vtable order of extension types with fused methods only dependant on the... · fcc3461e
      Stefan Behnel authored
      Make vtable order of extension types with fused methods only dependant on the original declaration order (e.g. in the .pxd file).
      Previously, fused methods were specialised and expanded on first use, which lead to an arbitrary order in the vtable.
      Also fixes compile failures when inheriting from base types with fused cdef methods.
      Fixes #1873.
      fcc3461e
  22. 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
  23. 03 Sep, 2017 1 commit
  24. 02 Sep, 2017 2 commits
  25. 24 Aug, 2017 1 commit
  26. 21 Aug, 2017 1 commit
  27. 20 Aug, 2017 1 commit
  28. 08 Aug, 2017 1 commit
  29. 07 Aug, 2017 1 commit
  30. 04 Aug, 2017 1 commit
  31. 31 Jul, 2017 1 commit
  32. 30 Jul, 2017 1 commit
  33. 29 Jul, 2017 1 commit
  34. 27 Jul, 2017 1 commit
  35. 25 Jul, 2017 1 commit
  36. 22 Jul, 2017 1 commit