summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Avoid creating "__defaults__" getter functions for fused dispatch function.gh3481_defaults_warningStefan Behnel2020-04-062-4/+4
* Remove "unused function" C compiler warning about "__defaults__" getter of fu...Stefan Behnel2020-04-062-2/+2
* Fix buildenv test in Py2.Stefan Behnel2020-04-061-1/+1
* Make sure that the test runner passes the I/O encoding down into end-to-end s...Stefan Behnel2020-04-061-0/+2
* Make embed test more debuggable by printing the path setup and the build outp...Stefan Behnel2020-04-062-5/+30
* Try if a random hash seed leads to a better sharding distribution in the test...Stefan Behnel2020-04-061-1/+6
* Include Python/system paths in "buildenv" test output to help with debugging ...Stefan Behnel2020-04-061-0/+9
* Use CPython provided Py_DecodeLocale() function for embedded CLI argument dec...Stefan Behnel2020-04-061-1/+12
* Bring async generator implementation en par with current CPython 3.9 alpha.Stefan Behnel2020-04-062-98/+315
* Explicitly test simple (and optimised) string concatenation in f-strings.Stefan Behnel2020-04-031-0/+59
* Avoid C compiler warning when refnanny is not used.Stefan Behnel2020-04-031-3/+11
* Fixed gdb C call to free() that broke "cy exec". (GH-3487)Volker-Weissmann2020-04-031-1/+1
* Modernise the variable increment in the pyprimes demo script (GH-3486)sairam41232020-04-031-3/+3
* Relaxed some of the checks on calling fused functions (GH-3381)da-woods2020-04-022-46/+156
* Update changelog.Stefan Behnel2020-04-021-1/+1
* Fix return type assumption about optimised str() call in Py2.Stefan Behnel2020-04-021-1/+1
* Update changelog.Stefan Behnel2020-04-021-0/+8
* Concatenate strings in place if possible (GH-3451)da-woods2020-04-022-5/+129
* Optimize builtin str() calls (GH-3478)William Ayd2020-04-023-0/+83
* Update changelog.Stefan Behnel2020-04-011-1/+2
* Fix branch prediction hints for plain (unlikely/exceptional) "raise" statemen...Stefan Behnel2020-04-011-5/+9
* Update changelog.Stefan Behnel2020-04-011-0/+4
* Add test that cascaded assignments support overwriting a variable that is sti...Stefan Behnel2020-04-011-0/+12
* Make fused function dispatch O(n) for `cpdef` functions. (GH-3366)will-ca2020-04-013-26/+148
* Avoid relying on signed integer overflow in f-string joining helper function.Stefan Behnel2020-03-311-3/+6
* Disable a saved compiler option in the test runner that cannot currently be c...Stefan Behnel2020-03-311-1/+1
* Cython header file for C++ `std::atomic` type (GH-3469)da-woods2020-03-313-0/+148
* Merge branch '0.29.x'Stefan Behnel2020-03-311-2/+12
|\
| * Update changelog.Stefan Behnel2020-03-311-0/+13
| * Make `Shadow.inline()` caching account for language version and compilation e...will-ca2020-03-312-8/+27
| * Update somewhat incorrect comment.Stefan Behnel2020-03-311-1/+1
| * Remove redundant type check.Stefan Behnel2020-03-311-1/+1
| * Avoid using PyUnicode_GET_SIZE() in PEP393 code.Stefan Behnel2020-03-311-2/+2
* | Update changelog.Stefan Behnel2020-03-311-1/+1
* | Add a dedicated test for and/or operators in a boolean context.Stefan Behnel2020-03-311-0/+119
* | Save "cache_builtins" option in test runner to make it changeable in tests.Stefan Behnel2020-03-311-1/+7
* | Update changelog.Stefan Behnel2020-03-311-2/+14
* | Specialize fused function local variables specified with pure-python (GH-3463)da-woods2020-03-316-8/+30
* | Make `Shadow.inline()` caching account for language version and compilation e...will-ca2020-03-262-10/+27
* | Add cpython.marshal declarations (GH-3468)Zackery Spytz2020-03-262-0/+67
* | Use PEP 518 indication for Cython build-time dependency. (GH-3461)Diego Elio Pettenò2020-03-261-4/+16
* | Fixed initialization of the array with the list which was broken in GH-3244 (...Dmitry Shesterkin2020-03-262-2/+16
* | Avoid incorrect type calls from cython.declare and cython.cast in Shadow.py (...Dmitry Shesterkin2020-03-252-16/+140
* | Mark missing argument errors in argument parsing code as unlikely (GH-3428)Alex Henrie2020-03-241-2/+2
* | Mark view.* extension types as non-imported so that they can be inherited fro...da-woods2020-03-244-1/+20
* | Make memoryviews work with cache_builtins=False (GH-3415)da-woods2020-03-243-26/+48
* | Add MinGW doc for Python 3.8+ (GH-3454)Yuan2020-03-241-0/+61
* | In the documentation, update references to point at `setuptools`. (GH-3456)Diego Elio Pettenò2020-03-2415-72/+64
* | Make reference counting more type specific by moving it into PyrexTypes (GH-3...da-woods2020-03-248-330/+421
* | Remove redundant pointer comparison (already done as a shortcut before this l...Stefan Behnel2020-03-241-2/+3