summaryrefslogtreecommitdiff
path: root/Cython/Compiler/Nodes.py
Commit message (Expand)AuthorAgeFilesLines
* Support PyBufferProcs with Limited C-API under Py3.9+ or Py3.11+ (GH-5422)Lisandro Dalcin2023-05-041-2/+4
* Remove the useless check that the struct field visibility is the same as the ...Stefan Behnel2023-05-041-1/+1
* Keep 'extern' visibility in context of struct/union to properly infer 'noexce...Matus Valo2023-05-031-1/+1
* Refactor the label interception code in for-loop nodes to do the iterator cle...scoder2023-04-031-21/+20
* Refactor label interception code in for-loop and exception handling nodes to ...scoder2023-04-021-44/+28
* Merge branch '0.29.x'Stefan Behnel2023-04-011-9/+14
|\
| * Fix a reference leak when a for-loop's "else:" branch contains a "break" for ...Stefan Behnel2023-04-011-9/+14
| * Reallow capture of memoryview arguments (GH-4929)da-woods2022-07-291-8/+0
| * Error on memoryview argument capture on 0.29.x (GH-4849)da-woods2022-07-121-2/+13
| * Revert "Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4...Stefan Behnel2022-05-171-51/+19
| * Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4749)Oleksandr Pavlyk2022-05-031-19/+51
| * Revert "Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4...scoder2022-04-161-49/+19
| * Allow setting descriptor docstring on PyPy>v7.3.9 (GH-4701)Matti Picus2022-04-011-2/+2
| * Avoid acquiring the GIL at the end of nogil functions (GH-3556) (GH-4703)Oleksandr Pavlyk2022-03-311-19/+49
| * Correctly generate function definions in finally clauses (GH-4652)da-woods2022-02-241-0/+2
| * Remove outdated warning about OpenMP < 3.0. Even the now-EOL Docker images fo...Stefan Behnel2022-01-161-4/+0
* | Avoid deprecated Py_OptimizeFlag in Py3.12 (GH-5343)scoder2023-03-311-1/+3
* | Allow nested C++ names after a module name (#5229)Chia-Hsiang Cheng2023-03-051-0/+2
* | Make unused **keyword argument show up in locals() (GH-4899)da-woods2023-02-241-9/+5
* | Support 2 and 3 arg __[ri]pow__ (#5168)da-woods2022-12-151-7/+48
* | Refactor module state to always use struct (#5056)da-woods2022-12-011-6/+0
* | Allow returning const types. (#5135)Mike Graham2022-11-181-0/+5
* | Allow nested cppclass definitions (#3221)samaingw2022-11-121-0/+3
* | Remove "from x cimport class C" (#4904)da-woods2022-10-111-16/+8
* | Fix failing relative imports in __init__ files. (#4552)Matus Valo2022-10-011-3/+10
* | Fix C++ error from Cython unused (#5029)da-woods2022-09-141-1/+1
* | [ENH] Propagate exceptions from `cdef` functions by default (#4670)Ashwin Srinath2022-09-101-7/+9
* | Make sure we call __del__ for final types (#4996)da-woods2022-09-051-0/+4
* | Generator expression and comprehension scope (#4254)da-woods2022-08-081-1/+9
* | Fix handling of annotations in functions in dataclasses (#4954)da-woods2022-08-081-3/+9
* | Fix a crash due to incorrect reference counting of memoryview arguments (GH-4...da-woods2022-07-291-9/+24
* | Make it easier to restore scanner state during parsing phase (GH-4813)da-woods2022-07-161-2/+2
* | Give better errors on size changes of PyVarObjects and reduce false positives...da-woods2022-07-161-1/+18
* | Avoid raising StopIteration in "__next__" if possible (GH-4844)da-woods2022-07-131-0/+26
* | Fix annotation type analysis for Python "typing" types (GH-4606)scoder2022-07-111-42/+89
* | Update Limited API preprocessor warning to be compatible with MSVC (#4826)Víctor Molina García2022-06-081-1/+3
* | Preserve except* declaration on function pointer types (GH-4771)da-woods2022-05-161-1/+5
* | Remove 'goto error' from numpy cimport guard code (GH-4773)da-woods2022-05-161-3/+1
* | Allow setting descriptor docstring on PyPy>v7.3.9 (GH-4694)Matti Picus2022-03-271-2/+2
* | Allow None to be passed into arguments annotated as type "object" (GH-4669)da-woods2022-03-151-0/+3
* | Clarify error message.Stefan Behnel2022-03-081-1/+1
* | Correctly generate function definions in finally clauses (GH-4652)da-woods2022-02-241-0/+2
* | Remove unused imports (GH-4643)Matus Valo2022-02-151-1/+1
* | Follow PEP-484 and warn about "func(x: list = None)" without an explicit "typ...Stefan Behnel2022-02-101-2/+4
* | Remove an unused function argument.Stefan Behnel2022-02-101-2/+2
* | Revert "Check for "Optional[ctype]" earlier because we need to make sure that...Stefan Behnel2022-01-301-12/+5
* | Revert "Allow any type in dataclasses.InitVar() again."Stefan Behnel2022-01-301-3/+1
* | Revert "Fix refactor-after-test bug."Stefan Behnel2022-01-301-1/+1
* | Fix refactor-after-test bug.Stefan Behnel2022-01-301-1/+1
* | Allow any type in dataclasses.InitVar() again.Stefan Behnel2022-01-301-1/+3