summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* Custom int128 conversion as a slow fallback (GH-5419)scoder2023-05-151-3/+24
* Prevent calling the dealloc slot of a non-GC base class with GC tracking enab...scoder2023-05-151-0/+38
* Keep 'extern' visibility in context of struct/union to properly infer 'noexce...Matus Valo2023-05-032-3/+41
* Catch ValueError when calling memoryview() to avoid leaking implementation de...Matus Valo2023-04-301-0/+26
* Fix parsing of bracketed then called context managers (GH-5404)da-woods2023-04-281-0/+20
* Move C-only test out of Python test file.Stefan Behnel2023-04-242-59/+53
* Warn about useless directives that do not change the previous setting.Stefan Behnel2023-04-242-0/+62
* Disallow @cfunc being applied to a @ufunc.Stefan Behnel2023-04-241-0/+7
* Disallow @cfunc together with @ccall on the same function.Stefan Behnel2023-04-241-0/+20
* Allow assigning ctuples from arbitrary sequences, not just tuples. The code w...Stefan Behnel2023-04-241-3/+26
* Improve error message when assigning tuples of incorrect size to a ctuple. Pr...Stefan Behnel2023-04-241-3/+3
* Ignore (and warn about) simple type-tuples in annotations (like "(int, int)")...Stefan Behnel2023-04-242-6/+29
* Avoid Python int object creation when multiplying sequences with C integers (...scoder2023-04-212-0/+176
* Fix regression in code generation order for cdef classes (GH-5395)Lisandro Dalcin2023-04-211-1/+23
* Make memoryviews with aliased item types comformable (GH-5375)Yue Yang2023-04-201-0/+15
* Work around the new Py3.12 error message suggestions in doctests by not print...Stefan Behnel2023-04-143-43/+43
* Add a "CYTHON_EXTERN_C" macro to allow redefining "__PYX_EXTERN_C" on user si...scoder2023-04-131-42/+45
* Fix issues with partially optimized cascaded comparisons (GH-5357)da-woods2023-04-131-0/+66
* Remove unintended duplicate of `IS_UNSIGNED_IMPL` and make the macro generall...0dminnimda2023-04-062-0/+20
* Fix AnnotationWriter for IndexNode with empty TupleNode (GH-5355)Lisandro Dalcin2023-04-051-0/+5
* Merge branch '0.29.x'Stefan Behnel2023-04-011-0/+27
|\
| * Fix a reference leak when a for-loop's "else:" branch contains a "break" for ...Stefan Behnel2023-04-011-1/+28
* | Add an explicit (although unnecessary) "noexcept" marker to the "PyCapsule_De...Stefan Behnel2023-03-311-0/+33
* | Improve error message for 'cimport cython.floating' (GH-5295)da-woods2023-03-271-0/+4
* | Allow InterpretCompilerDirectives.visit_AnnotationNode() to process nodes tha...Chia-Hsiang Cheng2023-03-261-0/+13
* | Allow soft-complex->double coercion to run without gil (#5287)da-woods2023-03-251-0/+48
* | Add declarations for C++20 mathematical constants (GH-5309)Jonathan Helgert2023-03-241-0/+21
* | Add a test for relative cimport within a submodule (GH-5320)Ralf Gommers2023-03-231-0/+17
* | Restore 0.29.x handling of None fused memoryviews (GH-5298)da-woods2023-03-231-0/+10
* | Fix ufunc GIL handling (#5332)da-woods2023-03-221-6/+47
* | Fix the relative-first import scheme for language_level=2 in Python 3. (GH-5329)scoder2023-03-221-0/+83
* | Fix exception handling in memoryview utilitycode (GH-5325)da-woods2023-03-203-9/+20
* | Fix missing exported C function declarations with cimport_from_pyx enabled (#...Chia-Hsiang Cheng2023-03-171-0/+15
* | Limit the cname length for generated number constants since some C compilers ...0dminnimda2023-03-171-0/+19
* | Add support for C++ std::any (#5314)Maximilien Colange2023-03-161-0/+78
* | Add a test for relative cimports from `__init__.pxd` files.Stefan Behnel2023-03-161-0/+15
* | Add libcpp.cmath (#5262)Jonathan Helgert2023-03-113-0/+49
* | Merge branch '0.29.x'Stefan Behnel2023-03-072-29/+26
|\ \ | |/
| * Allow Py3.12 AttributeError suggestions in doctest output.Stefan Behnel2023-03-072-29/+26
| * Avoid exponential recursion when coercing nested conditional expressions.Stefan Behnel2023-01-051-0/+46
* | Allow nested C++ names after a module name (#5229)Chia-Hsiang Cheng2023-03-053-0/+64
* | Fix annotation typing of Optional[tuple] (#5272)da-woods2023-03-011-0/+9
* | Order merged_in utility code (#5282)da-woods2023-03-011-0/+13
* | Add a test for libc.stdlib, specifically for exception declarations on the ca...Stefan Behnel2023-03-011-0/+32
* | Fix some issues when optimising the builtin memoryview (GH-5271)da-woods2023-03-011-0/+26
* | Support auto-generation of Numpy ufuncs (GH-4803)da-woods2023-02-251-0/+158
* | Show warning when annotation type is unknown (GH-5079)Matus Valo2023-02-252-4/+67
* | Shorten line to make style checker happy.Stefan Behnel2023-02-251-1/+1
* | Make test pass after adding float inference in GH-5234. We should really be i...Stefan Behnel2023-02-251-2/+2
* | Make unused **keyword argument show up in locals() (GH-4899)da-woods2023-02-241-0/+12