summaryrefslogtreecommitdiff
path: root/Cython/Utility/ModuleSetupCode.c
Commit message (Expand)AuthorAgeFilesLines
* Keep the "tp_print" slot for PyPy < 3.10 and CPython < 3.9 (GH-5437)Matti Picus2023-05-161-0/+5
* Silence GCC -Wsign-conversion (GH-5421)Lisandro Dalcin2023-05-031-2/+2
* Allow users to override CYTHON_PEP489_MULTI_PHASE_INIT in PyPy 3.9+.Stefan Behnel2023-05-021-4/+4
* Fix usage of _MSC_VER macro (GH-5417)matttyson2023-05-021-2/+2
* Use CYTHON_PEP489_MULTI_PHASE_INIT on PyPy 3.9 (GH-5414)Matti Picus2023-05-021-1/+5
* Refactor __Pyx_PyCode_New() to avoid "dead code" warnings and special error c...Stefan Behnel2023-04-141-16/+9
* Temporarily disable the FastGIL feature in CPython 3.12 until we have a worki...Stefan Behnel2023-04-131-1/+2
* Remove unintended duplicate of `IS_UNSIGNED_IMPL` and make the macro generall...0dminnimda2023-04-061-0/+8
* Avoid deprecated Py_OptimizeFlag in Py3.12 (GH-5343)scoder2023-03-311-4/+0
* Disable fast thread state access in CPython 3.12a6 (GH-5339)Daniele Nicolodi2023-03-281-1/+2
* Fix FakeReference on C++03 by avoiding C++11 features (GH-5317)da-woods2023-03-161-2/+2
* Disable access to the "ma_version_tag" dict field in CPython 3.12 since PEP 6...Stefan Behnel2023-02-131-1/+2
* Fix bound class methods when unpacking builtin method calls (GH-5219)0dminnimda2023-01-241-0/+8
* Change how memoryviewslice/array has sequence flag set (#5187)da-woods2022-12-311-0/+6
* Accept both 'int' and 'long' for 'x: int' annotations in Py2 (GH-5097)scoder2022-12-081-0/+5
* Run GCC 11 tests with the most recent language standard (#5078)da-woods2022-11-111-2/+4
* Revert "Change the type check for 'x: int' to 'isinstance(x, (int, long))' in...Stefan Behnel2022-10-261-5/+0
* Change the type check for 'x: int' to 'isinstance(x, (int, long))' in Py2, to...Stefan Behnel2022-10-261-0/+5
* always set CYTHON_UPDATE_DESCRIPTOR_DOC to 0 on PyPy (#5083)Matti Picus2022-10-121-1/+1
* Revert "Fix PYPY_VERSION_HEX/PYPY_VERSION_NUM typo (#5074)"da-woods2022-10-091-1/+1
* Fix PYPY_VERSION_HEX/PYPY_VERSION_NUM typo (#5074)Matti Picus2022-10-091-1/+1
* Prevent more "unused variable" C compiler warnings (GH-5004)Max Bachmann2022-09-051-0/+11
* only use [[fallthrough]] starting C++17 (#5005)Max Bachmann2022-09-041-8/+16
* Make Cython async functions set CO_COROUTINE and CO_ASYNC_GENERATOR code flag...scoder2022-07-291-0/+7
* Merge branch '0.29.x'Stefan Behnel2022-07-261-0/+55
|\
| * [0.29] Add configuration for the "nogil" CPython fork (GH-4912) (GH-4914)Sam Gross2022-07-261-0/+50
| * Revert "Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4...Stefan Behnel2022-05-171-6/+0
| * Fix version detection and compile/runtime Python version warning with double-...da-woods2022-05-161-4/+30
| * Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4749)Oleksandr Pavlyk2022-05-031-0/+6
| * Revert "Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4...scoder2022-04-161-6/+0
| * Disable CYTHON_FAST_PYCALL on Py3.10 (0.29.x) (GH-4735)da-woods2022-04-151-1/+2
| * Disable "CYTHON_UPDATE_DESCRIPTOR_DOC" for Pyston. It was previously only ena...Stefan Behnel2022-04-071-1/+1
| * Allow setting descriptor docstring on PyPy>v7.3.9 (GH-4701)Matti Picus2022-04-011-0/+9
| * Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4703)Oleksandr Pavlyk2022-03-311-0/+6
| * Do not redefine _USE_MATH_DEFINES in generated code (GH-4690)Yuriy Chernyshov2022-03-211-2/+4
| * Fix a large chunk of exc_info changes on 0.29.x (GH-4610)da-woods2022-02-021-2/+8
| * Disable USE_UNICODE_WRITER for Py3.11 (GH-4480)da-woods2021-12-051-1/+3
| * Get 0.29.x working on Python 3.11 (GH-4465)da-woods2021-11-181-4/+74
| * Non-int conversion to Py_hash_t.Robert Bradshaw2021-11-071-2/+2
| * Change C includes of "longintrepr.h" to account for upstream changes (GH-4428)Thomas A Caswell2021-10-311-1/+3
| * Stop calling PyEval_InitThreads() In Py3.7+ (where it has become a no-op).Stefan Behnel2021-07-011-1/+1
| * Make "__Pyx_UnicodeContainsUCS4()" work for WCHAR unicode strings with Py3.9+...scoder2021-04-251-0/+13
| * Really only use PyUnicode_FromUnicode() when needed (GH-3697)scoder2020-07-071-0/+4
| * Avoid an "unused variable" warning for code that gets compiled out in Py3.Stefan Behnel2020-06-141-1/+1
* | Adapt PEP-623 support to latest Py3.12 which removes the wstr field in PyUnic...Stefan Behnel2022-05-171-14/+14
* | Fix version detection and compile/runtime Python version warning with double-...da-woods2022-05-161-4/+30
* | Merge branch 0.29.xStefan Behnel2022-05-111-0/+5
* | Allow None to coerce to C types separately from other object values. (GH-4740)scoder2022-04-181-0/+22
* | Allow setting descriptor docstring on PyPy>v7.3.9 (GH-4694)Matti Picus2022-03-271-0/+12
* | Do not redefine _USE_MATH_DEFINES in generated code (GH-4690)Yuriy Chernyshov2022-03-211-1/+3