summaryrefslogtreecommitdiff
path: root/tests
Commit message (Expand)AuthorAgeFilesLines
* 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
* Support pyobject memoryviews in annotations (GH-4987)da-woods2023-02-241-1/+67
* Improve "subscript typing" of builtins (GH-5058)da-woods2023-02-241-5/+70
* Infer C float in "safe" type inference (GH-5234)da-woods2023-02-242-2/+11
* Make sure we parse int(Py_UCS4) as a digit and not a plain character value in...scoder2023-01-251-0/+32
* Fix test.Stefan Behnel2023-01-251-2/+2
* Fix bound class methods when unpacking builtin method calls (GH-5219)0dminnimda2023-01-243-0/+36
* Avoid unnecessary coercion to Python on int comparisons (#4821)da-woods2023-01-231-0/+8
* Optimize dispatch for fused memoryview types (GH-5073)da-woods2023-01-121-0/+40
* Improve "cpdef enum" to Python conversion (GH-4877)da-woods2023-01-104-2/+52
* Initialize array fields of structs with memcpy (GH-5201)Chia-Hsiang Cheng2023-01-101-0/+11
* Make cpdef enums pickleable (GH-5124)da-woods2023-01-102-0/+31
* Add missing call argument to make type(def) coercions for soft complex types ...Stefan Behnel2023-01-101-0/+16
* Avoid exponential recursion when coercing nested conditional expressions.Stefan Behnel2023-01-051-0/+46
* Fix Github ticket references in tests ('t' is the prefix used for old trac ti...Stefan Behnel2023-01-052-2/+2
* Add missing `annotation_typing` in Shadow.py (GH-5196)0dminnimda2023-01-051-0/+9
* Merge branch '0.29.x'Stefan Behnel2023-01-043-23/+37
|\
| * Add support of const fused type memory views (GH-3118) (GH-5076)da-woods2023-01-043-12/+125
| * [0.29.x] Avoid using asyncio.get_event_loop (GH-5188)da-woods2023-01-042-22/+36
| * numpy.int -> numpy.int_ (#5190)da-woods2022-12-312-7/+7
* | Skip define 'extern "C"' test on Windows (#5189)da-woods2023-01-011-7/+17
* | Mark extension types as immutable (#5023)Max Bachmann2023-01-011-0/+44
* | Change how memoryviewslice/array has sequence flag set (#5187)da-woods2022-12-311-6/+6
* | Fix windows tests and make some Windows CI builds "must pass" (#5175)da-woods2022-12-312-9/+19
* | numpy.int -> numpy.int_ (#5181)da-woods2022-12-222-7/+7
* | Support 2 and 3 arg __[ri]pow__ (#5168)da-woods2022-12-153-6/+175
* | Add the `cpow` directive to bring Cython `**` close to Python (GH-5016)da-woods2022-12-082-3/+218
* | Accept both 'int' and 'long' for 'x: int' annotations in Py2 (GH-5097)scoder2022-12-082-10/+35
* | Add compiler directive to disable the default exception propagation for legac...Matus Valo2022-12-062-0/+176
* | Relax `nogil_check()` of `SliceIndexNode` to support array initialisation (#5...Matus Valo2022-12-032-0/+88
* | Use setuptools>60 for CPython 3.12+, skip unicode test on PyPy and 3.12+ (GH-...Matti Picus2022-11-291-0/+4
* | Fix Python 3.11 fastcall test in debug mode (#5152)da-woods2022-11-261-0/+12
* | allow suggestions on AttributeError for PyPy in doctests (#5148)Matti Picus2022-11-261-2/+2
* | Allow returning const types. (#5135)Mike Graham2022-11-181-0/+10
* | Clean up issues with dataclasses and inheritance (#5046)da-woods2022-11-124-0/+68
* | Remove "assignable" requirement from cpp_locals (#4692)da-woods2022-11-121-7/+3
* | Allow nested cppclass definitions (#3221)samaingw2022-11-121-0/+44
* | cython, cythonize commands print a specific error when file does not exist (#...Matus Valo2022-11-081-0/+34
* | Fix linkage for `cdef public` functions in C++ mode (#5040)Maximilien Colange2022-11-083-18/+151
* | Add missing C++17/20 STL functions and methods (#5101)Jonathan Helgert2022-10-294-1/+207
* | Restore 'int'->'object' in type annotations for now (GH-5057)da-woods2022-10-261-16/+25
* | Fix type slot definitions of some binop self types (#5068)da-woods2022-10-071-0/+44
* | PEP614 decorators (#4991)da-woods2022-10-014-20/+35
* | Fix failing relative imports in __init__ files. (#4552)Matus Valo2022-10-012-2/+329
* | Implement reversed C++ iteration (#5002)Chia-Hsiang Cheng2022-10-011-0/+87
* | Fix recursive repr on cdef dataclasses (#5045)da-woods2022-09-271-0/+82