An error occurred fetching the project authors.
  1. 27 Feb, 2019 1 commit
  2. 08 Feb, 2019 1 commit
  3. 01 Feb, 2019 1 commit
  4. 19 Jan, 2019 1 commit
  5. 14 Dec, 2018 1 commit
  6. 24 Nov, 2018 1 commit
  7. 01 Nov, 2018 1 commit
  8. 27 Oct, 2018 1 commit
  9. 14 Oct, 2018 1 commit
  10. 21 Sep, 2018 1 commit
  11. 16 Sep, 2018 1 commit
  12. 14 Sep, 2018 2 commits
  13. 23 Aug, 2018 1 commit
  14. 03 Aug, 2018 1 commit
  15. 08 Jul, 2018 1 commit
  16. 27 May, 2018 2 commits
  17. 13 Apr, 2018 1 commit
  18. 18 Mar, 2018 1 commit
  19. 13 Mar, 2018 1 commit
  20. 11 Mar, 2018 1 commit
  21. 28 Feb, 2018 1 commit
  22. 28 Jan, 2018 1 commit
  23. 16 Nov, 2017 1 commit
  24. 03 Nov, 2017 1 commit
  25. 22 Oct, 2017 1 commit
  26. 03 Oct, 2017 2 commits
  27. 01 Oct, 2017 1 commit
  28. 22 Sep, 2017 1 commit
  29. 20 Sep, 2017 1 commit
  30. 19 Sep, 2017 1 commit
  31. 16 Sep, 2017 1 commit
  32. 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
  33. 03 Sep, 2017 1 commit
  34. 29 Aug, 2017 1 commit
  35. 25 Aug, 2017 1 commit
  36. 22 Aug, 2017 2 commits