summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) (GH-28035)Miss Islington (bot)2021-08-292-3/+63
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...Miss Islington (bot)2021-08-291-6/+7
* [3.9] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005...Serhiy Storchaka2021-08-2935-15/+142
* [3.9] bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021) (GH-2...Serhiy Storchaka2021-08-293-3/+7
* [3.9] bpo-25130: Make unit-test about restricting the maximum number of neste...Serhiy Storchaka2021-08-281-32/+36
* bpo-44962: Fix a race in WeakKeyDict, WeakValueDict and WeakSet when two thre...Miss Islington (bot)2021-08-282-12/+27
* bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938) (GH-27991)Miss Islington (bot)2021-08-271-16/+31
* bpo-40635: Fix getfqdn() docstring and docs (GH-27971)Miss Islington (bot)2021-08-261-2/+3
* [3.9] bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968) (GH-27...Miss Islington (bot)2021-08-265-7/+11
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...Miss Islington (bot)2021-08-262-0/+4
* [3.9] bpo-27334: roll back transaction if sqlite3 context manager fails to co...Erlend Egeberg Aasland2021-08-251-2/+76
* [3.9] bpo-34990: Treat the pyc header's mtime in compileall as an unsigned in...Miss Islington (bot)2021-08-243-11/+33
* bpo-44980: fix test_constructor to return None value (GH-27898) (GH-27914)Miss Islington (bot)2021-08-231-1/+1
* [3.9] bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904) (GH-27910)Łukasz Langa2021-08-231-0/+12
* bpo-44955: Always call stopTestRun() for implicitly created TestResult object...Miss Islington (bot)2021-08-222-53/+99
* bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)Miss Islington (bot)2021-08-211-1/+2
* bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834) (GH-27855)Miss Islington (bot)2021-08-201-0/+14
* bpo-44949: Fix test_readline auto history tests (GH-27813) (GH-27822)Miss Islington (bot)2021-08-191-2/+6
* [3.9] bpo-44947: Refine the syntax error for trailing commas in import statem...Łukasz Langa2021-08-181-0/+7
* [3.9] bpo-44815: Always show deprecation in asyncio.gather/sleep() (GH-27569)Sam Bull2021-08-182-12/+43
* bpo-44852: Support filtering over warnings without a set message (GH-27793) (...Miss Islington (bot)2021-08-181-4/+5
* bpo-44698: Restore complex pow behaviour for small integral exponents (GH-277...Miss Islington (bot)2021-08-171-0/+28
* [3.9] bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672)...Łukasz Langa2021-08-172-8/+15
* [3.9] bpo-44852: Support ignoring specific DeprecationWarnings wholesale in r...Łukasz Langa2021-08-163-0/+267
* [3.9] Fix the test suite for the old parser (GH-27749)Pablo Galindo Salgado2021-08-133-5/+5
* [3.9] bpo-44885: Correct the ast locations of f-strings with format specs and...Pablo Galindo Salgado2021-08-122-16/+29
* [3.9] bpo-33930: Fix typo in the test name. (GH-27733) (GH-27734)Miss Islington (bot)2021-08-121-1/+1
* bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-...Miss Islington (bot)2021-08-111-0/+15
* bpo-14853: add back the stdin test, skip if stdin is redirected (GH-27694) (G...Miss Islington (bot)2021-08-101-0/+16
* bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle i...Miss Islington (bot)2021-08-101-0/+142
* make lib2to3 parse async generators everywhere (GH-6588) (GH-27703)Miss Islington (bot)2021-08-102-8/+16
* bpo-41402: Fix email ContentManager calling .encode() on bytes (GH-21631) (GH...Miss Islington (bot)2021-08-092-3/+13
* bpo-38840: Incorrect __all__ in multiprocessing.managers (GH-18034) (GH-27684)Miss Islington (bot)2021-08-091-3/+4
* [3.9] Upgrade bundled pip and setuptools (GH-27625) (GH-27658)Tzu-ping Chung2021-08-094-2/+2
* bpo-32695: Docs and tests for compresslevel and preset kwargs in tarfile (GH-...Miss Islington (bot)2021-08-091-3/+18
* [3.9] bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `...Erlend Egeberg Aasland2021-08-061-0/+28
* bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633) (GH-27...Miss Islington (bot)2021-08-062-12/+40
* [3.9] bpo-43853: Handle sqlite3_value_text() errors (GH-25422). (GH-27627)Erlend Egeberg Aasland2021-08-061-5/+7
* [3.9] bpo-40928: notify users running test_decimal on macOS of malloc warning...Łukasz Langa2021-08-062-1/+25
* bpo-42958: Improve description of shallow= in filecmp.cmp docs (GH-27166) (GH...Miss Islington (bot)2021-08-041-2/+3
* bpo-39091: Fix segfault when Exception constructor returns non-exception for ...Miss Islington (bot)2021-08-031-0/+26
* bpo-44806: Fix __init__ in subclasses of protocols (GH-27545) (GH-27559)Miss Islington (bot)2021-08-022-2/+46
* bpo-44785: Silence deprecation warnings in test_pickle (GH-27538) (#27557)Miss Islington (bot)2021-08-021-1/+5
* bpo-44667: Treat correctly lines ending with comments and no newlines in the ...Miss Islington (bot)2021-08-022-1/+11
* Trivial typo in docstring (#27505)Miss Islington (bot)2021-07-311-1/+1
* bpo-42892: fix email multipart attribute error (GH-26903) (GH-27493)Miss Islington (bot)2021-07-302-3/+35
* bpo-44666: Use default encoding as fallback for compile_file (GH-27236) (GH-2...Miss Islington (bot)2021-07-302-3/+10
* bpo-44753: Don't use logfile extension when determining old files to be delet...Miss Islington (bot)2021-07-301-1/+2
* [3.9] Update URLs in comments and metadata to use HTTPS (GH-27458) (GH-27480)Łukasz Langa2021-07-3017-20/+20
* [3.9] bpo-31746: Prevent segfaults when sqlite3.Connection is uninitialised (...Erlend Egeberg Aasland2021-07-291-1/+23