An error occurred fetching the project authors.
- 27 Feb, 2019 1 commit
-
-
Stefan Behnel authored
-
- 08 Feb, 2019 1 commit
-
-
Stefan Behnel authored
-
- 01 Feb, 2019 1 commit
-
-
Stefan Behnel authored
-
- 19 Jan, 2019 1 commit
-
-
Stefan Behnel authored
-
- 14 Dec, 2018 1 commit
-
-
Stefan Behnel authored
-
- 24 Nov, 2018 1 commit
-
-
Stefan Behnel authored
-
- 01 Nov, 2018 1 commit
-
-
Stefan Behnel authored
-
- 27 Oct, 2018 1 commit
-
-
Stefan Behnel authored
-
- 14 Oct, 2018 1 commit
-
-
Stefan Behnel authored
-
- 21 Sep, 2018 1 commit
-
-
Stefan Behnel authored
-
- 16 Sep, 2018 1 commit
-
-
Stefan Behnel authored
-
- 14 Sep, 2018 2 commits
-
-
Stefan Behnel authored
Generally allow the "nogil" decorator and context manager to accept boolean arguments like "@nogil(False)". See #2579.
-
Stefan Behnel authored
Closes #2557.
-
- 23 Aug, 2018 1 commit
-
-
TeamSpen210 authored
This lambda is assigned to multiple names, so the fold attribute would be copied to all those names.
-
- 03 Aug, 2018 1 commit
-
-
Stefan Behnel authored
-
- 08 Jul, 2018 1 commit
-
-
Stefan Behnel authored
-
- 27 May, 2018 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 13 Apr, 2018 1 commit
-
-
Stefan Behnel authored
-
- 18 Mar, 2018 1 commit
-
-
Stefan Behnel authored
-
- 13 Mar, 2018 1 commit
-
-
Stefan Behnel authored
-
- 11 Mar, 2018 1 commit
-
-
Stefan Behnel authored
-
- 28 Feb, 2018 1 commit
-
-
Stefan Behnel authored
-
- 28 Jan, 2018 1 commit
-
-
Stefan Behnel authored
Promote the new opaque PEP-539 type "Py_tss_t" to a known Cython type to avoid static variable initialisation issues with the "Py_tss_NEEDS_INIT" struct initialiser value.
-
- 16 Nov, 2017 1 commit
-
-
Stefan Behnel authored
Closes #2008.
-
- 03 Nov, 2017 1 commit
-
-
Stefan Behnel authored
-
- 22 Oct, 2017 1 commit
-
-
Stefan Behnel authored
-
- 03 Oct, 2017 2 commits
-
-
Stefan Behnel authored
-
Stefan Behnel authored
-
- 01 Oct, 2017 1 commit
-
-
Stefan Behnel authored
-
- 22 Sep, 2017 1 commit
-
-
Stefan Behnel authored
-
- 20 Sep, 2017 1 commit
-
-
Stefan Behnel authored
-
- 19 Sep, 2017 1 commit
-
-
Stefan Behnel authored
-
- 16 Sep, 2017 1 commit
-
-
Stefan Behnel authored
-
- 09 Sep, 2017 1 commit
-
-
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.
-
- 03 Sep, 2017 1 commit
-
-
Stefan Behnel authored
Implement @cython.exceptval() decorator to make the "except x" signature declaration available in pure Python mode. Closes #1653.
-
- 29 Aug, 2017 1 commit
-
-
Stefan Behnel authored
-
- 25 Aug, 2017 1 commit
-
-
Stefan Behnel authored
-
- 22 Aug, 2017 2 commits
-
-
Stefan Behnel authored
Remove accidental left-over name "gs" from Shadow.py that should not be part of the pure mode types.