summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* [3.9] bpo-45007: Update to OpenSSL 1.1.1l in Windows build and CI (GH-28009) ...Łukasz Langa2021-08-296-22/+23
* bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) (GH-28035)Miss Islington (bot)2021-08-293-3/+65
* bpo-44394: Update libexpat copy to 2.4.1 (GH-26945) (GH-28032)Miss Islington (bot)2021-08-2922-191/+1389
* bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pyd...Miss Islington (bot)2021-08-292-6/+9
* [3.9] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005...Serhiy Storchaka2021-08-2936-15/+143
* [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-283-12/+28
* bpo-45022: Pin current libffi build to fixed version in preparation for upcom...Miss Islington (bot)2021-08-273-9/+17
* Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-...Miss Islington (bot)2021-08-271-1/+1
* bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) (GH-2...Miss Islington (bot)2021-08-271-0/+2
* bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938) (GH-27991)Miss Islington (bot)2021-08-273-17/+33
* bpo-40635: Fix getfqdn() docstring and docs (GH-27971)Miss Islington (bot)2021-08-262-4/+6
* [3.9] bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968) (GH-27...Miss Islington (bot)2021-08-266-7/+14
* bpo-45001: Make email date parsing more robust against malformed input (GH-27...Miss Islington (bot)2021-08-263-0/+6
* bpo-45003: Change __div__ to __truediv__ in py3 language reference. (GH-27951...Miss Islington (bot)2021-08-261-1/+1
* [3.9] bpo-43853: Amend NEWS entry for latest changes in sqlite3 (GH-27922) (G...Erlend Egeberg Aasland2021-08-251-3/+7
* [3.9] bpo-27334: roll back transaction if sqlite3 context manager fails to co...Erlend Egeberg Aasland2021-08-253-12/+102
* [3.9] bpo-34990: Treat the pyc header's mtime in compileall as an unsigned in...Miss Islington (bot)2021-08-244-11/+35
* [doc] Fix typo c-api/exceptions.rst (GH-27847) (GH-27919)Miss Islington (bot)2021-08-231-1/+1
* [doc] Added mailing list link for comp.lang.python (GH-27852) (GH-27916)Miss Islington (bot)2021-08-231-1/+2
* 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-232-8/+28
* [doc] Fix typo in idle.rst (GH-27903)Miss Islington (bot)2021-08-231-1/+1
* [3.9] bpo-4442: Document use of __new__ for subclasses of immutable types (G...Łukasz Langa2021-08-221-0/+48
* [3.9] bpo-42560: rework external references in Tkinter docs (GH-27838) (GH-27...Łukasz Langa2021-08-221-32/+19
* bpo-42560: reorganize Tkinter docs modules section for clarity (GH-27840) (GH...Miss Islington (bot)2021-08-221-17/+36
* bpo-42560: tweaks to intro of Tkinter docs- add macOS, drop ActiveState (GH-2...Miss Islington (bot)2021-08-221-3/+2
* bpo-44940: Clarify the documentation of re.findall() (GH-27849) (GH-27880)Miss Islington (bot)2021-08-221-4/+14
* bpo-44955: Always call stopTestRun() for implicitly created TestResult object...Miss Islington (bot)2021-08-223-53/+104
* bpo-44966: Fix out-of-date traceback message (GH-27867) (GH-27876)Miss Islington (bot)2021-08-221-1/+1
* 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-203-2/+18
* bpo-44949: Fix test_readline auto history tests (GH-27813) (GH-27822)Miss Islington (bot)2021-08-192-2/+8
* bpo-36384: [doc] Mention CVE-2021-29921 fix in 3.8.12 (GH-27824) (GH-27827)Miss Islington (bot)2021-08-192-0/+18
* bpo-44830: [doc] Restore missing Mozilla devguide link (GH-27818) (GH-27821)Miss Islington (bot)2021-08-191-0/+4
* [3.9] bpo-44947: Refine the syntax error for trailing commas in import statem...Łukasz Langa2021-08-184-6/+18
* [3.9] bpo-44815: Always show deprecation in asyncio.gather/sleep() (GH-27569)Sam Bull2021-08-183-12/+45
* bpo-44852: Support filtering over warnings without a set message (GH-27793) (...Miss Islington (bot)2021-08-181-4/+5
* bpo-44508: [Doc] Document failure mode for loop.call_soon_threadsafe (GH-2768...Miss Islington (bot)2021-08-171-0/+4
* introduce omitted index default before using it (GH-27775) (GH-27803)Miss Islington (bot)2021-08-171-8/+8
* bpo-44698: Restore complex pow behaviour for small integral exponents (GH-277...Miss Islington (bot)2021-08-173-21/+37
* bpo-44903: Removed othergui.rst and list of GUI frameworks (GH-27762) (GH-27790)Miss Islington (bot)2021-08-174-148/+13
* [3.9] bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672)...Łukasz Langa2021-08-173-8/+16
* [3.9] bpo-44852: Support ignoring specific DeprecationWarnings wholesale in r...Łukasz Langa2021-08-164-0/+269
* bpo-44907: Update error messages in tutorial examples (GH-27755)Miss Islington (bot)2021-08-141-3/+3
* [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-124-55/+62
* [3.9] bpo-33930: Fix typo in the test name. (GH-27733) (GH-27734)Miss Islington (bot)2021-08-121-1/+1
* Add .DS_Store on ignore (GH-27711) (GH-27724)Miss Islington (bot)2021-08-111-0/+1