summaryrefslogtreecommitdiff
path: root/Cython
Commit message (Expand)AuthorAgeFilesLines
* Support auto-generation of Numpy ufuncs (GH-4803)da-woods2023-02-259-3/+414
* Show warning when annotation type is unknown (GH-5079)Matus Valo2023-02-251-2/+29
* Update changelog and prepare 3.0beta1 release.Stefan Behnel2023-02-251-1/+1
* Add recently added CPython exception C-API functions (GH-5257)Max Bachmann2023-02-251-0/+7
* Make unused **keyword argument show up in locals() (GH-4899)da-woods2023-02-241-9/+5
* Support pyobject memoryviews in annotations (GH-4987)da-woods2023-02-241-3/+3
* Fix an initialization reference counting error in the Limited API (GH-4994)da-woods2023-02-241-2/+25
* Improve "subscript typing" of builtins (GH-5058)da-woods2023-02-244-68/+52
* Infer C float in "safe" type inference (GH-5234)da-woods2023-02-241-2/+4
* Fix PyLong digits access in CPython 3.12.Stefan Behnel2023-02-134-10/+18
* Disable access to the "ma_version_tag" dict field in CPython 3.12 since PEP 6...Stefan Behnel2023-02-131-1/+2
* Use a more correct and specific CPython internals guard in __Pyx_Raise().Stefan Behnel2023-02-131-7/+7
* Avoid C++ warnings when initializing module state (GH-5236)da-woods2023-01-301-1/+8
* Make sure we parse int(Py_UCS4) as a digit and not a plain character value in...scoder2023-01-252-0/+69
* Tests: Show offending position instead of decorator position if negative tree...Stefan Behnel2023-01-251-2/+3
* Fix bound class methods when unpacking builtin method calls (GH-5219)0dminnimda2023-01-242-2/+64
* Avoid unnecessary coercion to Python on int comparisons (#4821)da-woods2023-01-232-60/+107
* Write unicode strings instead of str in Py2 to get a more optimised string ge...Stefan Behnel2023-01-171-1/+1
* Minor code cleanups.Stefan Behnel2023-01-171-2/+2
* Disable parsing command line arguments as Python options in embedding code (G...Alexander Shadchin2023-01-171-0/+2
* Use PyxCodeWriter in the dataclass TemplateCode (GH-5049)da-woods2023-01-164-21/+63
* Optimize dispatch for fused memoryview types (GH-5073)da-woods2023-01-124-11/+177
* Replace deprecated C-API functions in embedding code with PyConfig calls (GH-...Alexander Shadchin2023-01-121-0/+33
* Improve "cpdef enum" to Python conversion (GH-4877)da-woods2023-01-103-7/+143
* Clean up `build_hex_version` (GH-5209)0dminnimda2023-01-101-9/+13
* Also support ".pre" and ".post" when parsing Cython's version.Stefan Behnel2023-01-101-3/+3
* Fix comment.Stefan Behnel2023-01-101-1/+1
* Fix version parsing in Utils.build_hex_version() after allowing a '.dev0' suf...Stefan Behnel2023-01-101-1/+3
* Add comment to Shadow.py that lists possible version formats.Stefan Behnel2023-01-101-0/+1
* Use PEP-440 Development release segment in public version identifiers (GH-5205)Julien Jerphanion2023-01-101-1/+1
* Initialize array fields of structs with memcpy (GH-5201)Chia-Hsiang Cheng2023-01-101-4/+11
* Make cpdef enums pickleable (GH-5124)da-woods2023-01-102-3/+5
* Add missing call argument to make type(def) coercions for soft complex types ...Stefan Behnel2023-01-101-1/+1
* Avoid exponential recursion when coercing nested conditional expressions.Stefan Behnel2023-01-051-9/+19
* Add missing `annotation_typing` in Shadow.py (GH-5196)0dminnimda2023-01-051-2/+2
* Mark extension types as immutable (#5023)Max Bachmann2023-01-011-0/+9
* Change how memoryviewslice/array has sequence flag set (#5187)da-woods2022-12-316-1/+24
* Remove unnecessary OrderedDict usage for CpdefEnums (#5180)GalaxySnail2022-12-261-5/+9
* Support 2 and 3 arg __[ri]pow__ (#5168)da-woods2022-12-153-16/+64
* Fix module struct C syntax error on windows (#5171)AnyLeftovers2022-12-121-1/+1
* Fix error from combination of two Complex.c changes (#5167)da-woods2022-12-101-2/+1
* Add the `cpow` directive to bring Cython `**` close to Python (GH-5016)da-woods2022-12-085-4/+216
* Improve detection of C complex.h (GH-5021)da-woods2022-12-083-22/+81
* Accept both 'int' and 'long' for 'x: int' annotations in Py2 (GH-5097)scoder2022-12-085-9/+23
* Added PyUnicode_AsUTF8AndSize to includes (#5163)William Ayd2022-12-071-1/+17
* Add compiler directive to disable the default exception propagation for legac...Matus Valo2022-12-063-1/+12
* Relax `nogil_check()` of `SliceIndexNode` to support array initialisation (#5...Matus Valo2022-12-031-1/+10
* Refactor module state to always use struct (#5056)da-woods2022-12-017-104/+54
* Use topological sort to speed up quadratic-time ModuleNode.sort_types_by_inhe...Scott Wolchok2022-11-301-23/+26
* Add missing load_factor() method on libcpp/unordered_multimap (GH-5157)Dobatymo2022-11-301-0/+1