summaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* bpo-39452: Rewrite and expand __main__.rst (#26883)Jack DeVries2021-08-245-17/+369
* Add tests for the C tokenizer and expose it as a private module (GH-27924)Pablo Galindo Salgado2021-08-249-5/+1114
* bpo-42064: Pass module state to `sqlite3` UDF callbacks (GH-27456)Erlend Egeberg Aasland2021-08-242-31/+64
* bpo-43826: Fix resource warning due to unclosed objects. (GH-25381)Karthikeyan Singaravelan2021-08-241-0/+5
* bpo-34990: Treat the pyc header's mtime in compileall as an unsigned int (GH-...Ammar Askar2021-08-244-11/+35
* bpo-44690: Adopt binacii.a2b_base64's strict mode in base64.b64decode (GH-27272)Idan Moral2021-08-233-3/+7
* bpo-42560: simplify/merge architecture info in Tkinter docs (GH-27839)Mark Roseman2021-08-231-39/+9
* [doc] Fix typo c-api/exceptions.rst (GH-27847)Sunny Bean2021-08-231-1/+1
* [doc] Added mailing list link for comp.lang.python (GH-27852)Mike Smith2021-08-231-1/+2
* bpo-42560: add warning to Tkinter docs about outdated pre-8.5 documentation o...Mark Roseman2021-08-231-0/+7
* bpo-44980: fix test_constructor to return None value (GH-27898)andrei kulakov2021-08-231-1/+1
* bpo-42560: rewrite of Tkinter docs "life preserver" (GH-27842)Mark Roseman2021-08-232-145/+182
* bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904)Serhiy Storchaka2021-08-232-8/+28
* bpo-38291: Update 3.10 WhatsNew with typing.{io|re} DeprecationWarning (GH-27...Ken Jin2021-08-231-0/+13
* [doc] Fix typo in idle.rst (GH-27903)Ikko Ashimine2021-08-231-1/+1
* Fix bytes.__bytes__ to not truncate at a zero byte (GH-27902)Mark Dickinson2021-08-232-3/+3
* bpo-24234: Implement bytes.__bytes__ (GH-27901)Dong-hee Na2021-08-237-3/+63
* bpo-24234: implement complex.__complex__ (GH-27887)Mark Dickinson2021-08-236-3/+57
* bpo-4442: Document use of __new__ for subclasses of immutable types (GH-27866)Raymond Hettinger2021-08-221-0/+49
* bpo-44957: Promote PEP 604 syntax in typing docs (GH-27833)Sebastian Rittau2021-08-222-14/+19
* bpo-42560: reorganize Tkinter docs modules section for clarity (GH-27840)Mark Roseman2021-08-221-17/+36
* bpo-42560: tweaks to intro of Tkinter docs- add macOS, drop ActiveState (GH-2...Mark Roseman2021-08-221-3/+2
* bpo-42560: rework external references in Tkinter docs (GH-27838)Mark Roseman2021-08-221-29/+19
* bpo-41322: Add unit tests for deprecation of test return values (GH-27846)andrei kulakov2021-08-226-2/+50
* Remove unused UNKNOWN macros from cursor.h and prepare_protocol.h (GH-27885)Erlend Egeberg Aasland2021-08-222-2/+0
* bpo-44978: allow Argument Clinic to handle __complex__ special methods (GH-27...Mark Dickinson2021-08-222-1/+1
* bpo-44955: Always call stopTestRun() for implicitly created TestResult object...Serhiy Storchaka2021-08-223-53/+104
* bpo-44940: Clarify the documentation of re.findall() (GH-27849)Serhiy Storchaka2021-08-221-4/+14
* bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870)Serhiy Storchaka2021-08-211-1/+2
* bpo-44966: Fix out-of-date traceback message (GH-27867)Raymond Hettinger2021-08-211-1/+1
* bpo-44965: Early exit for non-DML statements in sqlite3.Cursor.executemany() ...Erlend Egeberg Aasland2021-08-211-8/+7
* bpo-44524: Do not set _name of _SpecialForm without need (GH-27861)Serhiy Storchaka2021-08-212-12/+8
* bpo-44926: `get_type_hints`: Add note about type aliases with forward refs (#...Maximilian Hils2021-08-201-0/+7
* bpo-44960: add regression test for geometric_mean with mixed int/floa… (#27...Irit Katriel2021-08-201-0/+16
* bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834)Mark Dickinson2021-08-203-2/+18
* Fix reST markup in dataclasses.rst (GH-27843)Jean-Abou-Samra2021-08-191-1/+1
* bpo-41322: added deprecation warning for tests returning value!=None (GH-27748)andrei kulakov2021-08-193-2/+10
* bpo-36384: [doc] Mention CVE-2021-29921 fix in 3.8.12 (GH-27824)Łukasz Langa2021-08-192-0/+18
* bpo-44830: [doc] Restore missing Mozilla devguide link (GH-27818)Jack DeVries2021-08-191-0/+4
* bpo-44079: Strip superfluous statement cache from sqlite3.Connection (GH-25998)Erlend Egeberg Aasland2021-08-184-116/+18
* bpo-44947: Refine the syntax error for trailing commas in import statements (...Pablo Galindo Salgado2021-08-184-6/+18
* bpo-44874: deprecate Py_TRASHCAN_SAFE_BEGIN and Py_TRASHCAN_SAFE_END (GH-27693)Irit Katriel2021-08-183-4/+55
* bpo-44524: Fix cryptic TypeError message when trying to subclass special form...Yurii Karabas2021-08-183-0/+21
* bpo-44949: Fix test_readline auto history tests (#27813)Victor Stinner2021-08-182-2/+8
* bpo-44852: Support filtering over warnings without a set message (GH-27793)Łukasz Langa2021-08-181-4/+5
* bpo-44508: [Doc] Document failure mode for loop.call_soon_threadsafe (GH-27688)meowmeowmeowcat2021-08-171-0/+4
* introduce omitted index default before using it (GH-27775)Jefferson Oliveira2021-08-171-8/+8
* bpo-44935: enable posix_spawn() on Solaris (GH-27795)Jakub Kulík2021-08-172-2/+5
* bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772)Mark Dickinson2021-08-173-21/+37
* bpo-44895: Introduce PYTHONDUMPREFSFILE variable for refcount dumping (GH-27767)Dong-hee Na2021-08-175-0/+41