summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Avoid calling PySequence_List() in some cases where we can see that the argum...optimise_pysequence_listStefan Behnel2020-04-083-5/+27
* Merge branch '0.29.x'Stefan Behnel2020-04-071-0/+6
|\
| * Update changelog.Stefan Behnel2020-04-071-0/+6
| * Add tests for std::move wrapperOmer Ozarslan2020-04-071-0/+34
| * Add std::move wrapper to utility libraryOmer Ozarslan2020-04-071-0/+14
* | Update changelog.Stefan Behnel2020-04-071-3/+3
* | Fix test compilation in MSVC (which rejects literal division by zero).Stefan Behnel2020-04-071-1/+1
* | Merge some runtime compilation runs into a single one in the CPython fstring ...Stefan Behnel2020-04-071-2/+6
* | Avoid creating unused "__defaults__" getter functions for fused dispatch func...Stefan Behnel2020-04-072-4/+4
* | 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