summaryrefslogtreecommitdiff
path: root/Cython
Commit message (Expand)AuthorAgeFilesLines
* [0.29] implement the --depfile command-line option for the "cython" tool (GH-...releaseEli Schwartz2022-08-054-19/+31
* Hide a C compiler "unused argument" warning in Py3.11 where the "fast thread ...Stefan Behnel2022-08-041-1/+1
* Prepare release of 0.29.32.0.29.32Stefan Behnel2022-07-291-1/+1
* Reallow capture of memoryview arguments (GH-4929)da-woods2022-07-291-8/+0
* Fix error where "import *" tried to overwrite a macro in utility code (GH-4930)da-woods2022-07-282-2/+5
* Prepare release of 0.29.31.0.29.31Stefan Behnel2022-07-271-1/+1
* [0.29] Add --module-name argument to cython command (GH-4906)h-vetinari2022-07-273-14/+86
* Backport "noexcept" function modifier to Cython 0.29.x (GH-4903)da-woods2022-07-271-1/+7
* [0.29] Add configuration for the "nogil" CPython fork (GH-4912) (GH-4914)Sam Gross2022-07-261-0/+50
* [0.29] Use atomic reference counting in MemoryView in more cases (GH-4912) (G...Sam Gross2022-07-262-28/+23
* Minor code cleanups after 3a373e2ccdddc79202d9ed13edc85d4b95616b26.Stefan Behnel2022-07-201-3/+5
* Make pickle checksum calculation succeed even if one of the hash algorithms i...Stefan Behnel2022-07-202-19/+29
* Fixed over-zealous optimization of append attribute usage to "__Pyx_PyObject_...da-woods2022-07-162-2/+2
* Error on memoryview argument capture on 0.29.x (GH-4849)da-woods2022-07-121-2/+13
* Revert "includes/cpython: Fix newfunc to use PyObject* for args/kwargs instea...Stefan Behnel2022-07-041-1/+1
* includes/cpython: Fix newfunc to use PyObject* for args/kwargs instead of obj...Kirill Smelkov2022-07-031-1/+1
* BUG: Fortify object buffers against included NULLs (#4859)Sebastian Berg2022-07-031-7/+10
* Fix tuple multiplication in MergedSequenceNode (GH-4864)da-woods2022-06-281-1/+1
* Fix GCC -Wconversion warning in C utility code (GH-4854)Lisandro Dalcin2022-06-211-1/+1
* Fix bytearray iteration in 0.29.x (#4108)Kenrick Everett2022-06-211-0/+4
* BUG: fused types not subscriptable in Cython.Shadow (#4842)pfebrer2022-06-171-1/+1
* MNT: always require va_start to have two arguments (#4820)Thomas A Caswell2022-06-071-1/+1
* Use encoded string since `ModuleNode.full_module_name` may originate from dif...Stefan Behnel2022-05-171-1/+1
* Move from deprecated find_loader() to find_spec() for setting up the import t...Matti Picus2022-05-172-32/+14
* Prepare release of 0.29.30.0.29.30Stefan Behnel2022-05-171-1/+1
* Revert "Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4...Stefan Behnel2022-05-174-59/+35
* Prepare release of 0.29.29.0.29.29Stefan Behnel2022-05-161-1/+1
* Remove ".__contains__" -> "PySequence_Contains" slot mappings for known built...da-woods2022-05-161-10/+5
* Fix version detection and compile/runtime Python version warning with double-...da-woods2022-05-161-4/+30
* Change IndexError to TypeError when calling unbound CyFunctions (GH-4783)da-woods2022-05-161-0/+3
* Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4749)Oleksandr Pavlyk2022-05-034-35/+59
* Mark reverse operators with METHOD_COEXIST (GH-4753)da-woods2022-05-032-2/+16
* Avoid error if type doesn't have "__getstate__" when setting up pickle suppor...da-woods2022-04-181-1/+7
* Revert "Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4...scoder2022-04-164-57/+35
* Disable CYTHON_FAST_PYCALL on Py3.10 (0.29.x) (GH-4735)da-woods2022-04-151-1/+2
* Fix UnionType.__setattr__ in Shadow.py (GH-4727)Jordan Brière2022-04-121-1/+1
* Test for object.__getstate__ (new in Py3.11) in auto-pickling code (GH-4732)da-woods2022-04-121-2/+17
* Prevent Python call with exception set in __Pyx_AddTraceback() (GH-4723)Jakub Kulík2022-04-071-1/+11
* Disable "CYTHON_UPDATE_DESCRIPTOR_DOC" for Pyston. It was previously only ena...Stefan Behnel2022-04-071-1/+1
* Stop using "PyBytesObject.ob_shash" in Py3.11, where it is deprecated. It was...Stefan Behnel2022-04-071-1/+1
* Allow setting descriptor docstring on PyPy>v7.3.9 (GH-4701)Matti Picus2022-04-012-2/+11
* Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4703)Oleksandr Pavlyk2022-03-314-35/+57
* Do not redefine _USE_MATH_DEFINES in generated code (GH-4690)Yuriy Chernyshov2022-03-211-2/+4
* Make error message more readable by using hex integer values for all presente...Stefan Behnel2022-03-141-1/+1
* For the auto-pickle checksum, allow SHA-1 and SHA-256 which are used by Cytho...Stefan Behnel2022-03-141-5/+21
* Import internal CPython frame header file in Python 3.11 (GH-4667)Thomas A Caswell2022-03-124-0/+25
* Correctly generate function definions in finally clauses (GH-4652)da-woods2022-02-241-0/+2
* Prepare release of 0.29.28.Stefan Behnel2022-02-161-1/+1
* Restore old PyEval_EvalCode() signature for older versions of PyPy (GH-4236)Matti Picus2022-02-041-1/+1
* Fix a large chunk of exc_info changes on 0.29.x (GH-4610)da-woods2022-02-021-2/+8