summaryrefslogtreecommitdiff
path: root/Cython
Commit message (Expand)AuthorAgeFilesLines
* Make sure that version dependent special methods are correctly and completely...Stefan Behnel2021-10-241-2/+2
* Update incorrect version support comment for pycapsule.pxd (GH-4426)Max Bachmann2021-10-231-1/+1
* Fix libcpp map/set/multiset/unordered type issues (GH-4410)Dobatymo2021-10-224-150/+162
* Add C++ multimap/unordered_multimap (GH-4419)Dobatymo2021-10-222-0/+140
* Add some missing functions to libcpp maps and string (GH-4395)account-login2021-10-203-0/+4
* Fix tracing after adapting it to Py3.11 (GH-4420)da-woods2021-10-181-2/+2
* Merge branch '0.29.x'Stefan Behnel2021-10-181-21/+38
|\
| * Make Profile.c use PyThreadState_EnterTracing() (GH-4411)Victor Stinner2021-10-181-21/+38
| * Fix signature of "PyUnicode_CompareWithASCIIString" (GH-4344)Max Bachmann2021-09-071-1/+1
| * Fix C++ bool coercion where no "operator bool" exists (GH-4349)da-woods2021-09-031-2/+2
* | Fix fused cpdef default arguments (GH-4413)da-woods2021-10-173-5/+14
* | Import TextTestResult in test runner instead of _TextTestResult (GH-4415)da-woods2021-10-171-4/+4
* | Fix wrong type in unordered_multiset::swap() (GH-4408)Dobatymo2021-10-151-1/+1
* | Improve "import_array" guard (GH-4397)da-woods2021-10-061-1/+1
* | Handle function "outer_attrs" more consistently (GH-4375)da-woods2021-10-013-3/+5
* | Fix typo discovered by codespell (#4387)Christian Clauss2021-09-291-1/+1
* | Fix the name of attributes in the common ABI module (GH-4376)da-woods2021-09-281-6/+14
* | Avoid AddTraceback() if stringtab isn't set up (GH-4378)da-woods2021-09-272-25/+37
* | Make __Pyx_CoroutineAwaitType non-pickleable (GH-4381)da-woods2021-09-271-0/+21
* | Avoid unnecessary binding of fused functions on class lookup (GH-4370)da-woods2021-09-241-3/+9
* | Remove usused "FetchCommonPointer" utility code (GH-4380)da-woods2021-09-202-35/+0
* | Fix maybe uninitialized `value` in get_value and get_value_no_default. (GH-4361)Nicolas Pauss2021-09-061-2/+2
* | Fix C++ bool coercion where no "operator bool" exists (GH-4349)da-woods2021-09-031-2/+2
* | Merge branch '0.29.x'Stefan Behnel2021-09-011-0/+1
|\ \ | |/
| * Avoid copying unaligned 16-bit values since some platforms require them to be...Stefan Behnel2021-09-011-14/+3
| * Prepare release of 0.29.24.0.29.24Stefan Behnel2021-07-131-1/+1
* | Avoid copying unaligned 16-bit values since some platforms require them to be...Stefan Behnel2021-09-011-3/+3
* | Deduplicate tuples containing IdentifierStringNode (GH-4353)da-woods2021-08-311-0/+5
* | Fix signature of "PyUnicode_CompareWithASCIIString" (GH-4344)Max Bachmann2021-08-311-1/+1
* | Fix some bugs on Windows (GH-4331)0dminnimda2021-08-312-11/+40
* | Restore error when using arbitrary decorators on cdef functions (GH-4323)da-woods2021-08-071-1/+9
* | Suppress warnings about constant expressions on MSVC (GH-4317)da-woods2021-08-072-0/+31
* | runtests: include the C compiler error output in the compile exception to sho...Stefan Behnel2021-07-312-32/+32
* | Fix compilation of "ParseTreeTransforms" in Py2. It previously tried to compa...Stefan Behnel2021-07-262-1/+3
* | Fix some imports.Stefan Behnel2021-07-261-1/+2
* | Add missing attribute declaration for FunctionState class.Stefan Behnel2021-07-261-0/+1
* | Fix type declaration in parser.Stefan Behnel2021-07-261-2/+2
* | Fix the type of the 'self' argument in a cdef staticmethod declared in a pxd ...da-woods2021-07-263-12/+10
* | Make __PYX_WARN_IF_INIT_CALLED name unique per-module in generated header fil...da-woods2021-07-231-3/+3
* | Support arbitrary mappings in C++ dict-to-map conversion, not just exact dicts.Stefan Behnel2021-07-221-3/+7
* | Prepare release of 3.0.0a93.0.0a9Stefan Behnel2021-07-201-1/+1
* | Explicitly return None from a method that is expected to return something oth...Stefan Behnel2021-07-201-0/+1
* | Refactor function to make it less verbose and simpler to change: error cases ...Stefan Behnel2021-07-201-12/+7
* | Make code more readable by changing the order of a condition and moving the s...Stefan Behnel2021-07-201-45/+45
* | Prevent C++ coercions from picking up user-set directives (GH-4206)da-woods2021-07-202-5/+24
* | Merge pull request #4186 from amol-/cygdb-optional-interpreterRobert Bradshaw2021-07-191-22/+38
|\ \
| * | Add --skip-interpreter optionAlessandro Molina2021-05-211-22/+38
* | | Resolve some issues with "cpp_locals" (GH-4265)da-woods2021-07-195-14/+34
* | | Rename GeneratorExpressionScope to ComprehensionScope (GH-4275)da-woods2021-07-192-9/+9
* | | Add missing multiset class to the standard library bindings (GH-4273)da-woods2021-07-192-10/+119