summaryrefslogtreecommitdiff
path: root/Cython
Commit message (Expand)AuthorAgeFilesLines
* 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
* Prepare release of 0.29.27.0.29.27Stefan Behnel2022-01-281-1/+1
* Backport GH-4563 : generate dependency files (GH-4576)Evgeni Burovski2022-01-282-0/+26
* Keep utility code names across type specialisations and show it in the C file...Stefan Behnel2022-01-281-1/+5
* Use "Py_ssize_t" instead of "int" for a node counter variable to avoid useles...Stefan Behnel2022-01-281-1/+1
* Avoid C compiler warning about uninitialised "am_send" slots in Py3.10+.Stefan Behnel2022-01-213-3/+16
* Make sure that we raise a TypeError for invalid numbers of arguments for rang...Stefan Behnel2022-01-161-1/+1
* Remove outdated warning about OpenMP < 3.0. Even the now-EOL Docker images fo...Stefan Behnel2022-01-161-4/+0
* Adapt to upcoming PyPy3.8/9 releases (GH4517)Matti Picus2021-12-254-11/+11
* Guard uses of tp_pypy_flags and tp_vectorcall on PyPy (GH-4509)Matti Picus2021-12-214-22/+22
* Add "tp_pypy_flags" field to PyTypeObject struct when compiling in PyPy 6.0+ ...Stefan Behnel2021-12-164-0/+35
* Prepare release of 0.29.26.Stefan Behnel2021-12-161-1/+1
* Revert "Add tp_inline_values_offset to slot_table (0.29.x) (GH-4473)"Stefan Behnel2021-12-164-53/+19
* Prevent in-list optimisation when the list contains starred expresssions (GH-...Arvind Natarajan2021-12-141-0/+4
* pyston support: backport memory corruption fix GH-4200 to 0.29.x branch (GH-4...Marius Wachtler2021-12-051-2/+2
* Disable USE_UNICODE_WRITER for Py3.11 (GH-4480)da-woods2021-12-051-1/+3
* Prepare release of 0.29.x.Stefan Behnel2021-12-051-1/+1
* Add tp_inline_values_offset to slot_table (0.29.x) (GH-4473)da-woods2021-12-054-19/+53
* Exceptions.c: use PyCode_NewEmpty() in Py3 instead of PyCode_New() (GH-4479)da-woods2021-12-051-12/+19
* Get 0.29.x working on Python 3.11 (GH-4465)da-woods2021-11-183-5/+83
* Enable usage of std::move() only in the supported versions of MSVC (GH-4191)Max Bachmann2021-11-181-1/+2
* Fix some deprecated unittest method usages.Stefan Behnel2021-11-187-31/+31
* Import TextTestResult in test runner instead of _TextTestResult (GH-4415)da-woods2021-11-181-4/+4
* Clean up some code in cython.inline() implementation.Stefan Behnel2021-11-181-12/+15
* Fix some imports.Stefan Behnel2021-11-181-2/+2
* Add missing attribute declaration for FunctionState class.Stefan Behnel2021-11-161-0/+1
* Small changes to get `--cython-compile-all` working again (GH-3650)da-woods2021-11-162-2/+3