summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* Try to fix cython.inline() on Windows with Py3.8+ where the DLL loading requi...fix_srctree_tests_on_windowsStefan Behnel2020-04-091-0/+7
* Try to fix unicode print output in "unicode_imports" test on Windows with Py2...Stefan Behnel2020-04-091-2/+11
* Include "PYTHONIOENCODING" env var in buildenv test to help debugging print f...Stefan Behnel2020-04-091-0/+1
* Merge branch 'master' into fix_srctree_tests_on_windowsStefan Behnel2020-04-074-7/+11
|\
| * 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
* | Merge branch 'master' into fix_srctree_tests_on_windowsStefan Behnel2020-04-061-1/+1
|\ \ | |/
| * Fix buildenv test in Py2.Stefan Behnel2020-04-061-1/+1
* | Merge branch 'master' into fix_srctree_tests_on_windowsStefan Behnel2020-04-0610-112/+448
|\ \ | |/
| * 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
* | Enable unicode console output in the test runner on Windows.Stefan Behnel2020-04-032-0/+9
* | Fix work-around for Windows unicode module names in Py3.5/6.Stefan Behnel2020-04-031-5/+10
* | Hack around a distutils 3.[5678] bug on Windows for unicode module names.Stefan Behnel2020-04-021-0/+33
* | Merge branch 'master' into fix_srctree_tests_on_windowsStefan Behnel2020-04-0299-703/+2610
|\ \ | |/
| * 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