An error occurred fetching the project authors.
  1. 17 Nov, 2017 1 commit
  2. 16 Nov, 2017 1 commit
  3. 12 Nov, 2017 2 commits
  4. 10 Nov, 2017 1 commit
  5. 07 Nov, 2017 2 commits
  6. 05 Nov, 2017 1 commit
  7. 01 Nov, 2017 1 commit
  8. 31 Oct, 2017 1 commit
  9. 29 Oct, 2017 1 commit
  10. 28 Oct, 2017 1 commit
  11. 27 Oct, 2017 1 commit
  12. 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
  13. 15 Oct, 2017 1 commit
  14. 12 Oct, 2017 5 commits
  15. 08 Oct, 2017 5 commits
  16. 28 Sep, 2017 2 commits
  17. 27 Sep, 2017 1 commit
  18. 12 Sep, 2017 1 commit
  19. 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
  20. 03 Sep, 2017 2 commits
  21. 02 Sep, 2017 7 commits
  22. 01 Sep, 2017 1 commit