summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-29410: Change the default hash algorithm to SipHash13. (GH-28752)Inada Naoki2021-10-103-6/+21
* Fix EncodingWarning in test_tools. (GH-28846)Inada Naoki2021-10-106-23/+27
* Fix dataclassses spelling (GH-28837)Landon Yarrington2021-10-092-2/+2
* bpo-27580: Add support of null characters in the csv module. (GH-28808)Serhiy Storchaka2021-10-091-5/+39
* bpo-45256: Remove the usage of the C stack in Python to Python calls (GH-28488)Pablo Galindo Salgado2021-10-092-4/+24
* bpo-20028: Improve error message of csv.Dialect when initializing (GH-28705)Dong-hee Na2021-10-091-1/+30
* Bump MAGIC_NUMBER to reflect change in JUMP_ABSOLUTE semantics. (GH-28829)Mark Shannon2021-10-091-1/+2
* bpo-10716: Migrating pydoc to html5. (GH-28651)Julien Palard2021-10-096-261/+353
* bpo-45410: libregrtest -jN writes stderr into stdout (GH-28819)Victor Stinner2021-10-081-22/+18
* bpo-45408: Don't override previous tokenizer errors in the second parser pass...Pablo Galindo Salgado2021-10-072-1/+9
* bpo-45337: Use the realpath of the new executable when creating a venv on Win...Steve Dower2021-10-072-9/+25
* bpo-16379: Fix SQLite version checks in test_module_constants() (GH-28809)Erlend Egeberg Aasland2021-10-071-2/+2
* bpo-45403: Fix test_sys.test_stdlib_dir() (GH-28785)Victor Stinner2021-10-071-2/+2
* bpo-45400: Fix suggestion test of test_exceptions (GH-28783)Victor Stinner2021-10-071-1/+1
* bpo-45041: Restore `sqlite3` executescript behaviour for `SELECT` queries (GH...Erlend Egeberg Aasland2021-10-071-0/+11
* bpo-35970: Add help flag to base64 module (GH-28774)Ammar Askar2021-10-072-5/+18
* Fix typos in the Lib directory (GH-28775)Christian Clauss2021-10-0664-83/+83
* bpo-45328: Avoid failure in OSs without TCP_NODELAY support (GH-28646)rtobar2021-10-061-1/+7
* bpo-40321: Add missing test, slightly expand documentation (GH-28760)Łukasz Langa2021-10-062-4/+4
* bpo-40116: Add insertion order bit-vector to dict values to allow dicts to sh...Mark Shannon2021-10-061-36/+1
* Normalize jumps in compiler. All forward jumps to use JUMP_FORWARD. (GH-28755)Mark Shannon2021-10-061-2/+2
* bpo-40321: Support HTTP response status code 308 in urllib.request (#19588)Jochem Schulenklopper2021-10-061-4/+11
* bpo-45343: Update bundled pip to 21.2.4 and setuptools to 58.1.0 (GH-28684)Illia Volochii2021-10-054-4/+4
* bpo-45020: Identify which frozen modules are actually aliases. (gh-28655)Eric Snow2021-10-053-22/+77
* Merge tag 'v3.11.0a1'Pablo Galindo2021-10-051-303/+564
|\
| * Python 3.11.0a1v3.11.0a1Pablo Galindo2021-10-051-303/+564
* | Rearrage the finder tests. (gh-28740)Eric Snow2021-10-051-30/+56
* | bpo-45324: Capture data in FrozenImporter.find_spec() to use in exec_module()...Eric Snow2021-10-053-31/+84
* | bpo-44050: Extension modules can share state when they don't support sub-inte...Hai Shi2021-10-051-0/+31
|/
* bpo-45354: Skip obsolete device name tests on Windows 11 (GH-28712)Jeremy Kloth2021-10-051-4/+7
* bpo-45371: Fix distutils' rpath support for clang (GH-28732)Christian Heimes2021-10-051-1/+2
* bpo-44594: fix (Async)ExitStack handling of __context__ (gh-27089)John Belmonte2021-10-043-4/+73
* Remove trailing spaces. (GH-28706)Serhiy Storchaka2021-10-032-3/+3
* bpo-45346: Keep docs consistent regarding true and false values (GH-28697)Raymond Hettinger2021-10-021-1/+1
* bpo-45125: Improves pickling docs and tests for `shared_memory` (GH-28294)Nikita Sobolev2021-10-011-31/+104
* Revert "Revert "bpo-45229: Make datetime tests discoverable (GH-28615)" (GH-2...Serhiy Storchaka2021-10-011-47/+45
* bpo-45310: Fix parrallel shared memory tests (GH-28661)Serhiy Storchaka2021-10-011-16/+24
* bpo-45020: Add more test cases for frozen modules. (gh-28664)Eric Snow2021-10-017-14/+108
* bpo-40173: Fix test.support.import_helper.import_fresh_module() (GH-28654)Serhiy Storchaka2021-09-303-52/+30
* Revert "bpo-45229: Make datetime tests discoverable (GH-28615)" (GH-28650)Pablo Galindo Salgado2021-09-301-45/+47
* bpo-41710: Add _PyTime_AsTimespec_clamp() (GH-28629)Victor Stinner2021-09-301-1/+48
* bpo-45229: Make datetime tests discoverable (GH-28615)Serhiy Storchaka2021-09-291-47/+45
* [typo] Fix threading.Barrier comment that used confusing punctuation (GH-28623)Łukasz Langa2021-09-291-1/+1
* bpo-24391: Better reprs for threading objects. (GH-20534)Serhiy Storchaka2021-09-292-0/+58
* bpo-39039: tarfile raises descriptive exception from zlib.error (GH-27766)Jack DeVries2021-09-292-0/+23
* bpo-45269: test wrong `markers` type to `c_make_encoder` (GH-28540)Nikita Sobolev2021-09-281-0/+9
* bpo-45211: Remember the stdlib dir during startup. (gh-28586)Eric Snow2021-09-282-0/+27
* bpo-35606: Fix math.prod tests using 'start' as keyword parameter (GH-28595)Pablo Galindo Salgado2021-09-281-6/+12
* bpo-45296: Fix exit/quit message on Windows (GH-28577)Terry Jan Reedy2021-09-282-0/+14
* bpo-1596321: Fix threading._shutdown() for the main thread (GH-28549)Victor Stinner2021-09-272-8/+50