https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
1016ef3 Python 3.9.7 30 August 2021, 19:02:15 UTC
9827710 [3.9] bpo-43913: Fix bugs in cleaning up classes and modules in unittest. (GH-28006) (GH-28071) * Functions registered with addModuleCleanup() were not called unless the user defines tearDownModule() in their test module. * Functions registered with addClassCleanup() were not called if tearDownClass is set to None. * Buffering in TestResult did not work with functions registered with addClassCleanup() and addModuleCleanup(). * Errors in functions registered with addClassCleanup() and addModuleCleanup() were not handled correctly in buffered and debug modes. * Errors in setUpModule() and functions registered with addModuleCleanup() were reported in wrong order. * And several lesser bugs.. (cherry picked from commit 08d9e597c8ef5a2b26375ac954fdf224f5d82c3c) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 30 August 2021, 17:22:21 UTC
720aef4 bpo-44449: faulthandler don't modify frame refcnt (GH-27850) Fix a crash in the signal handler of the faulthandler module: no longer modify the reference count of frame objects. (cherry picked from commit fe997e1a67835a929705c8c305d41c4d7dd326e3) Co-authored-by: Victor Stinner <vstinner@python.org> 30 August 2021, 13:56:03 UTC
0c5e0aa bpo-41620: TestCase.run() now always return a TestResult instance (GH-28030) (GH-28065) Previously it returned None if the test class or method was decorated with a skipping decorator. Co-authored-by: Iman Tabrizian <iman.tabrizian@gmail.com> (cherry picked from commit 7e246a3a7b43762480ee4fe0cfb859e8e997a8c8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 30 August 2021, 13:42:34 UTC
576803d [3.9] bpo-45007: Update multissl to openssl 1.1.1l as well (GH-28044) (GH-28062) This was missed while upgrading CI.. (cherry picked from commit d6cb5dd9e19210f5963ff8beadde7ca2fda71574) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 30 August 2021, 13:07:55 UTC
4b55837 bpo-44689: ctypes.util.find_library() now finds macOS 11+ system libraries when built on older macOS systems (GH-27251) (GH-28053) Previously, when built on older macOS systems, `find_library` was not able to find macOS system libraries when running on Big Sur due to changes in how system libraries are stored. (cherry picked from commit 71853a73024a98aa38a3c0444fe364dbd9709134) Co-authored-by: Tobias Bergkvist <tobias@bergkv.ist> 30 August 2021, 09:08:16 UTC
d0f94ab bpo 45007: Update macOS installer builds to use OpenSSL 1.1.1l. (GH-28051) (cherry picked from commit 94b2639fad50d7ff8acd12c11e5fe5f9a6e1da5c) Co-authored-by: Ned Deily <nad@python.org> 30 August 2021, 07:36:02 UTC
5720bca [3.9] bpo-45007: Update to OpenSSL 1.1.1l in Windows build and CI (GH-28009) (GH-28040) (cherry picked from commit d3bdbbf9a4352a24fc2bfc7a63a024b244b61aba) Co-authored-by: Steve Dower <steve.dower@python.org> 29 August 2021, 15:07:45 UTC
24416e4 bpo-43124: Fix smtplib multiple CRLF injection (GH-25987) (GH-28035) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 0897253f426068ea6a6fbe0ada01689af9ef1019) Co-authored-by: Miguel Brito <5544985+miguendes@users.noreply.github.com> 29 August 2021, 14:45:25 UTC
007221a bpo-44394: Update libexpat copy to 2.4.1 (GH-26945) (GH-28032) Update the vendored copy of libexpat to 2.4.1 (from 2.2.8) to get the fix for the CVE-2013-0340 "Billion Laughs" vulnerability. This copy is most used on Windows and macOS. Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 3fc5d84046ddbd66abac5b598956ea34605a4e5d) Co-authored-by: Victor Stinner <vstinner@python.org> 29 August 2021, 14:36:36 UTC
4540951 bpo-42278: Use tempfile.TemporaryDirectory rather than tempfile.mktemp in pydoc (GH-23200) (GH-28025) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit c9227df5a9d8e958a2324cf0deba8524d1ded26a) Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com> 29 August 2021, 12:56:45 UTC
330aabb [3.9] bpo-25130: Add calls of gc.collect() in tests to support PyPy (GH-28005). (GH-28028) (cherry picked from commit 2a8127cafe1d196f858a3ecabf5f1df3eebf9a12) 29 August 2021, 12:08:32 UTC
dab74d6 [3.9] bpo-25130: Make SQLite tests more compatible with PyPy (GH-28021) (GH-28023) (cherry picked from commit 07d3d54) 29 August 2021, 11:03:11 UTC
1046cd0 [3.9] bpo-25130: Make unit-test about restricting the maximum number of nested blocks cpython-only (GH-28002) (GH-28017) PyPy and potentially other implementations have different or no contraints on the number of blocks that can be statically nested. move the test that checks for this behaviour into a unit test and mark it as CPython-only.. (cherry picked from commit eb263f9a356f5c5f21b8d5ce20bac92f31c40cad) Co-authored-by: Carl Friedrich Bolz-Tereick <cfbolz@gmx.de> 28 August 2021, 19:24:39 UTC
166ad70 bpo-44962: Fix a race in WeakKeyDict, WeakValueDict and WeakSet when two threads attempt to commit the last pending removal (GH-27921) (GH-28014) Fixes: Traceback (most recent call last): File "/home/graingert/projects/asyncio-demo/demo.py", line 36, in <module> sys.exit(main()) File "/home/graingert/projects/asyncio-demo/demo.py", line 30, in main test_all_tasks_threading() File "/home/graingert/projects/asyncio-demo/demo.py", line 24, in test_all_tasks_threading results.append(f.result()) File "/usr/lib/python3.10/concurrent/futures/_base.py", line 438, in result return self.__get_result() File "/usr/lib/python3.10/concurrent/futures/_base.py", line 390, in __get_result raise self._exception File "/usr/lib/python3.10/concurrent/futures/thread.py", line 52, in run result = self.fn(*self.args, **self.kwargs) File "/usr/lib/python3.10/asyncio/runners.py", line 47, in run _cancel_all_tasks(loop) File "/usr/lib/python3.10/asyncio/runners.py", line 56, in _cancel_all_tasks to_cancel = tasks.all_tasks(loop) File "/usr/lib/python3.10/asyncio/tasks.py", line 53, in all_tasks tasks = list(_all_tasks) File "/usr/lib/python3.10/_weakrefset.py", line 60, in __iter__ with _IterationGuard(self): File "/usr/lib/python3.10/_weakrefset.py", line 33, in __exit__ w._commit_removals() File "/usr/lib/python3.10/_weakrefset.py", line 57, in _commit_removals discard(l.pop()) IndexError: pop from empty list Also fixes: Exception ignored in: weakref callback <function WeakKeyDictionary.__init__.<locals>.remove at 0x00007fe82245d2e0> Traceback (most recent call last): File "/usr/lib/pypy3/lib-python/3/weakref.py", line 390, in remove del self.data[k] KeyError: <weakref at 0x00007fe76e8d8180; dead> Exception ignored in: weakref callback <function WeakKeyDictionary.__init__.<locals>.remove at 0x00007fe82245d2e0> Traceback (most recent call last): File "/usr/lib/pypy3/lib-python/3/weakref.py", line 390, in remove del self.data[k] KeyError: <weakref at 0x00007fe76e8d81a0; dead> Exception ignored in: weakref callback <function WeakKeyDictionary.__init__.<locals>.remove at 0x00007fe82245d2e0> Traceback (most recent call last): File "/usr/lib/pypy3/lib-python/3/weakref.py", line 390, in remove del self.data[k] KeyError: <weakref at 0x000056548f1e24a0; dead> See: https://github.com/agronholm/anyio/issues/362GH-issuecomment-904424310 See also: https://bugs.python.org/issue29519 Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 206b21ed9f64fedff67bfea7cf73e423e3e32393) Co-authored-by: Thomas Grainger <tagrain@gmail.com> 28 August 2021, 18:54:48 UTC
399cd46 bpo-45022: Pin current libffi build to fixed version in preparation for upcoming update (GH-27982) Also improve the build script for libffi, which is not used as part of the regular build. (cherry picked from commit 969ae7f7356584e30667b4e490ffa2ffa1810429) Co-authored-by: Steve Dower <steve.dower@python.org> 27 August 2021, 16:28:30 UTC
2351ff2 Fix typo in a comment in Modules/_ssl.c: s/validata/validate/ (GH-27993) (GH-27998) (cherry picked from commit 28db1f61f20352c02e4ae1518e5aeb6505df3045) Co-authored-by: Adam Dangoor <adamdangoor@gmail.com> 27 August 2021, 11:59:23 UTC
9500dd5 bpo-44997: macOS does not support loadable SQLite extensions (GH-27979) (GH-27995) Authored-by: Ronald Oussoren <ronaldoussoren@mac.com> (cherry picked from commit 2ec9428e3516b6e7c6583687aa3b39fb96925577) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> 27 August 2021, 11:36:17 UTC
0243764 bpo-45018: Fix rangeiter_reduce in rangeobject.c (GH-27938) (GH-27991) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 94a3d2a6329ab7941e93ad2f5bcbb8af2b8b80d2) Co-authored-by: chilaxan <chilaxan@gmail.com> 27 August 2021, 10:52:07 UTC
f1e3fc4 bpo-40635: Fix getfqdn() docstring and docs (GH-27971) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit fdcb675eed47b1f6054fae381af4388b16a6fff4) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 26 August 2021, 19:55:22 UTC
970533e [3.9] bpo-45011: Fix test_asyncio without C module _asyncio (GH-27968) (GH-27970) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 7dc505b8655b3e48b93a4274dfd26e5856d9c64f) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 26 August 2021, 17:56:50 UTC
2cdbd3b bpo-45001: Make email date parsing more robust against malformed input (GH-27946) (GH-27973) Various date parsing utilities in the email module, such as email.utils.parsedate(), are supposed to gracefully handle invalid input, typically by raising an appropriate exception or by returning None. The internal email._parseaddr._parsedate_tz() helper used by some of these date parsing routines tries to be robust against malformed input, but unfortunately it can still crash ungracefully when a non-empty but whitespace-only input is passed. This manifests as an unexpected IndexError. In practice, this can happen when parsing an email with only a newline inside a ‘Date:’ header, which unfortunately happens occasionally in the real world. Here's a minimal example: $ python Python 3.9.6 (default, Jun 30 2021, 10:22:16) [GCC 11.1.0] on linux Type "help", "copyright", "credits" or "license" for more information. >>> import email.utils >>> email.utils.parsedate('foo') >>> email.utils.parsedate(' ') Traceback (most recent call last): File "<stdin>", line 1, in <module> File "/usr/lib/python3.9/email/_parseaddr.py", line 176, in parsedate t = parsedate_tz(data) File "/usr/lib/python3.9/email/_parseaddr.py", line 50, in parsedate_tz res = _parsedate_tz(data) File "/usr/lib/python3.9/email/_parseaddr.py", line 72, in _parsedate_tz if data[0].endswith(',') or data[0].lower() in _daynames: IndexError: list index out of range The fix is rather straight-forward: guard against empty lists, after splitting on whitespace, but before accessing the first element. (cherry picked from commit 989f6a3800f06b2bd31cfef7c3269a443ad94fac) Co-authored-by: wouter bolsterlee <wouter@bolsterl.ee> 26 August 2021, 15:48:20 UTC
46970fd bpo-45003: Change __div__ to __truediv__ in py3 language reference. (GH-27951) (GH-27962) (cherry picked from commit 806e25fd3173a80021e6df87b81263b5f6056f38) Co-authored-by: Objectivitix <79152594+Objectivitix@users.noreply.github.com> 26 August 2021, 07:03:18 UTC
0ec17a2 [3.9] bpo-43853: Amend NEWS entry for latest changes in sqlite3 (GH-27922) (GH-27952) (cherry picked from commit 7903a1096343d8018e889029f025d39bdd077170) Co-authored-by: Erlend Egeberg Aasland <erlend.aasland@innova.no> 25 August 2021, 19:26:28 UTC
52702e8 [3.9] bpo-27334: roll back transaction if sqlite3 context manager fails to commit (GH-26202) (GH-27944) 25 August 2021, 19:02:25 UTC
9d3b6b2 [3.9] bpo-34990: Treat the pyc header's mtime in compileall as an unsigned int (GH-19708) (cherry picked from commit bb21e28fd08f894ceff2405544a2f257d42b1354) Co-authored-by: Ammar Askar <ammar@ammaraskar.com> Co-authored-by: Stéphane Wirtel <stephane@wirtel.be> 24 August 2021, 15:07:31 UTC
834a2eb [doc] Fix typo c-api/exceptions.rst (GH-27847) (GH-27919) Co-authored-by: Tianqing Peng <pengtianqing@yimian.com.cn> (cherry picked from commit dcbf7ff6a700b63e637a0445d68866670a398024) Co-authored-by: Sunny Bean <ptq008@gmail.com> 23 August 2021, 20:09:52 UTC
28de562 [doc] Added mailing list link for comp.lang.python (GH-27852) (GH-27916) (cherry picked from commit 7b550dfce64bd134c5604fd1f2d4c43ae2b669e4) Co-authored-by: Mike Smith <mikesmith@screamingjoypad.com> 23 August 2021, 19:24:12 UTC
de49eac bpo-44980: fix test_constructor to return None value (GH-27898) (GH-27914) (cherry picked from commit 27b761a11a14521617a01257eb3767150bec3a74) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 23 August 2021, 19:20:29 UTC
b0df288 [3.9] bpo-44984: Rewrite test_null_strings in _testcapi (GH-27904) (GH-27910) Test also PyObject_Repr(NULL) and PyObject_Bytes(NULL).. (cherry picked from commit 4d689173861257c69adc6dc1dca4171946ddb57f) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 23 August 2021, 18:48:04 UTC
7543e7f [doc] Fix typo in idle.rst (GH-27903) intially -> initially (cherry picked from commit 0e8695ece0d3569eeb1b89c91a1b0aa3d34f228e) Co-authored-by: Ikko Ashimine <eltociear@gmail.com> 23 August 2021, 17:57:05 UTC
ac87b07 [3.9] bpo-4442: Document use of __new__ for subclasses of immutable types (GH-27866) (GH-27900) (cherry picked from commit eec340ea3af27887fcaac4029ebdee99f3713bff) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com> 22 August 2021, 20:14:25 UTC
c579f0b [3.9] bpo-42560: rework external references in Tkinter docs (GH-27838) (GH-27896) - reorganized from two sections (tkinter vs. tcl/tk) into three (tkinter, tcl/tk, and books) - main (recommended) tkinter docs have one tutorial (tkdocs) and one reference (shipman), added better descriptions - dropped link to Tkinter page on wiki (suggestion by E. Paine; outdated, most material already linked to from python.org) - replaced Tcl/Tk recent man pages and core dev home with single link to main Tcl/Tk page (which holds both of these) - updated Modern Tkinter link to book page on TkDocs site (was Amazon link to old version), dropped description - replaced Grayson book by Moore book (newer, covers ttk) - changed Ousterhout ref to second edition, covers ttk - dropped link to Welch book (old). (cherry picked from commit d1049d1d6b43296d4db1aa8668aa4ca807bf7adb) Co-authored-by: Mark Roseman <mark@markroseman.com> 22 August 2021, 19:06:06 UTC
986750b bpo-42560: reorganize Tkinter docs modules section for clarity (GH-27840) (GH-27895) - move description of internal modules (_tkinter and tkinter.constants) from section intro to list of additional modules at end of section, as not most important info - added missing ttk and tix here - emphasized up front that most apps will need tkinter and ttk (cherry picked from commit d5dbe8bca792350f4997c027535e0ca498abd1bb) Co-authored-by: Mark Roseman <mark@markroseman.com> 22 August 2021, 19:05:46 UTC
e74cf86 bpo-42560: tweaks to intro of Tkinter docs- add macOS, drop ActiveState (GH-27835) (GH-27892) (cherry picked from commit 141c7a4fce8def67baa9d24f542c105b8502893e) Co-authored-by: Mark Roseman <mark@markroseman.com> 22 August 2021, 19:02:12 UTC
d006392 bpo-44940: Clarify the documentation of re.findall() (GH-27849) (GH-27880) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> Co-authored-by: Vedran Čačić <vedgar+github@gmail.com> (cherry picked from commit 64f9e7b19dc1603fcbd07c17c9860085b9d21465) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 22 August 2021, 18:15:38 UTC
4e5162f bpo-44955: Always call stopTestRun() for implicitly created TestResult objects (GH-27831) (GH-27882) Method stopTestRun() is now always called in pair with method startTestRun() for TestResult objects implicitly created in TestCase.run(). Previously it was not called for test methods and classes decorated with a skipping decorator. (cherry picked from commit a9640d75531d6cbbfd254b65435f238c26bf5cd9) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 22 August 2021, 18:15:10 UTC
407b3e0 bpo-44966: Fix out-of-date traceback message (GH-27867) (GH-27876) 22 August 2021, 00:36:54 UTC
d5781e9 bpo-44968: Fix test_subprocess_wait_no_same_group in test_asyncio (GH-27870) The code of the test was never executed because the test function was unintentionally converted to a generator function. (cherry picked from commit 585390fdd8661b4bc08bdfc27551292da9b4b9b8) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 21 August 2021, 20:29:18 UTC
7ef0673 bpo-44954: Fix wrong result in float.fromhex corner case (GH-27834) (GH-27855) (cherry picked from commit 60b93d9e4922eeae25052bc15909d1f4152babde) Co-authored-by: Mark Dickinson <mdickinson@enthought.com> 20 August 2021, 11:37:41 UTC
0215257 bpo-44949: Fix test_readline auto history tests (GH-27813) (GH-27822) (cherry picked from commit 6fb62b42f4db56ed5efe0ca4c1059049276c1083) Co-authored-by: Victor Stinner <vstinner@python.org> 19 August 2021, 10:35:28 UTC
9882025 bpo-36384: [doc] Mention CVE-2021-29921 fix in 3.8.12 (GH-27824) (GH-27827) (cherry picked from commit 0fd66e46b2f472d0d206a185dc8892f4f0347cb6) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 19 August 2021, 09:20:47 UTC
fb6074f bpo-44830: [doc] Restore missing Mozilla devguide link (GH-27818) (GH-27821) (cherry picked from commit 942d1a4284e9341df47c48d7c63e921136dc9719) Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com> 19 August 2021, 08:36:55 UTC
4e4d35d [3.9] bpo-44947: Refine the syntax error for trailing commas in import statements (GH-27814) (GH-27817) (cherry picked from commit b2f68b190035540872072ac1d2349e7745e85596) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> 18 August 2021, 21:03:59 UTC
b2779b2 [3.9] bpo-44815: Always show deprecation in asyncio.gather/sleep() (GH-27569) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 18 August 2021, 18:47:55 UTC
ebe7e6d bpo-44852: Support filtering over warnings without a set message (GH-27793) (GH-27810) Additional improvements: - messages which were compiled regular expressions aren't unpacked back into strings for unmatched warnings; - removed unnecessary "if tokens:" check (there's one before the for loop); - took `endswith` calculation out of the for loop. (cherry picked from commit 8cf07d3db3eed02b43350a5f9dbf68f1c839ea82) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 18 August 2021, 12:10:39 UTC
e2320c6 bpo-44508: [Doc] Document failure mode for loop.call_soon_threadsafe (GH-27688) (GH-27805) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 3240bc62f4e0afa09964f3afc845697f0a0806b9) Co-authored-by: meowmeowmeowcat <meowmeowcat1211@gmail.com> 17 August 2021, 23:18:22 UTC
1bc0541 introduce omitted index default before using it (GH-27775) (GH-27803) (cherry picked from commit 599f5c8481ca258ca3a5d13eaee7d07a9103b5f2) Co-authored-by: Jefferson Oliveira <jefferson.dev.insights@gmail.com> 17 August 2021, 21:49:53 UTC
beb3a83 bpo-44698: Restore complex pow behaviour for small integral exponents (GH-27772) (GH-27797) (cherry picked from commit 4b9a2dcf19e5d13c3bc2afea2de1f65cd994c699) Co-authored-by: Mark Dickinson <mdickinson@enthought.com> 17 August 2021, 17:38:39 UTC
e21b66b bpo-44903: Removed othergui.rst and list of GUI frameworks (GH-27762) (GH-27790) (cherry picked from commit 6a358bb9482f7595b858ea7b800cbe66f0de5fa1) Co-authored-by: Gautam Chaudhuri <gautam.chaudhuri.1803@gmail.com> 17 August 2021, 10:09:09 UTC
27fd313 [3.9] bpo-38956: don't print BooleanOptionalAction's default twice (GH-27672) (GH-27788) Co-authored-by: Micky Yun Chan <michan@redhat.com>. (cherry picked from commit 1512bc21d60f098a9e9f37b44a2f6a9b49a3fd4f) Co-authored-by: Maximilian Hils <git@maximilianhils.com> 17 August 2021, 09:17:00 UTC
c7c4cbc [3.9] bpo-44852: Support ignoring specific DeprecationWarnings wholesale in regrtest (GH-27634) (GH-27785) (cherry picked from commit a0a6d39295a30434b088f4b66439bf5ea21a3e4e) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 16 August 2021, 20:47:08 UTC
43bab05 bpo-44907: Update error messages in tutorial examples (GH-27755) (cherry picked from commit ed524b4569b1e4a166886c880018418d46284378) Co-authored-by: meowmeowmeowcat <meowmeowcat1211@gmail.com> 14 August 2021, 00:25:38 UTC
282fc5c [3.9] Fix the test suite for the old parser (GH-27749) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 13 August 2021, 10:26:07 UTC
4b86c9c [3.9] bpo-44885: Correct the ast locations of f-strings with format specs and repeated expressions (GH-27729) (GH-27744) (cherry picked from commit 8e832fb2a2cb54d7262148b6ec15563dffb48d63) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> 12 August 2021, 17:46:35 UTC
f7635f0 [3.9] bpo-33930: Fix typo in the test name. (GH-27733) (GH-27734) [bpo-33930](): Fix typo in the test name. (GH-27733) (cherry picked from commit f08e6d1bb3c5655f184af88c6793e90908bb6338) Co-authored-by: Benjamin Peterson <benjamin@python.org> Automerge-Triggered-By: GH:benjaminp 12 August 2021, 02:20:21 UTC
8c93a63 Add .DS_Store on ignore (GH-27711) (GH-27724) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 1841c70f2bdab9d29c1c74a8afffa45d5555af98) Co-authored-by: 180909 <wjh180909@gmail.com> 11 August 2021, 11:09:43 UTC
15f0a45 bpo-33930: Fix segfault with deep recursion when cleaning method objects (GH-27678) (GH-27720) (cherry picked from commit bfc2d5a5c4550ab3a2fadeb9459b4bd948ff61a2) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> 11 August 2021, 08:32:24 UTC
d27e2f4 bpo-44854: Add .editorconfig file to help enforce `make patchcheck` (GH-27638) (GH-27714) (cherry picked from commit c0ab59f7de1906feee21c057ad433fad924d1e38) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 10 August 2021, 17:22:15 UTC
897c870 bpo-14853: add back the stdin test, skip if stdin is redirected (GH-27694) (GH-27698) (cherry picked from commit 8ed183391241f0c73e7ba7f42b1d49fc02985f7b) Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> 10 August 2021, 13:09:42 UTC
6f4cded bpo-25782: avoid hang in PyErr_SetObject when current exception has a cycle in its context chain (GH-27626) (GH-27707) Co-authored-by: Dennis Sweeney 36520290+sweeneyde@users.noreply.github.com (cherry picked from commit d5c217475c4957a8084ac3f92ae012ece5edc7cb) Co-authored-by: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> 10 August 2021, 11:08:41 UTC
c7dfbd2 bpo-33479: Remove unqualified tkinter threadsafe claim. (GH-6990) (GH-27705) It has not been true for several years and likely never was. (cherry picked from commit 6b37d0d5300813de31d66df1c77dad7e1027e4d8) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 10 August 2021, 09:58:05 UTC
0e63776 make lib2to3 parse async generators everywhere (GH-6588) (GH-27703) (cherry picked from commit 149addd4960d634ce672ab5fc17e0e785a0cdcd0) Co-authored-by: Zsolt Dollenstein <zsol.zsol@gmail.com> 10 August 2021, 09:56:50 UTC
ede1dc4 bpo-44872: use new trashcan macros in framobject.c (GH-27683) (GH-27691) 10 August 2021, 07:55:39 UTC
fcbe8c6 bpo-39498 Start linking the security warnings in the stdlib modules (GH-18272) (GH-27699) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit c5c5326d4799fe4ae566aff32ed3461af95859cc) Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com> 10 August 2021, 07:51:33 UTC
395f4c7 bpo-41402: Fix email ContentManager calling .encode() on bytes (GH-21631) (GH-27687) (cherry picked from commit b33186bc43bb5aaf652dd9d093a08fdde796d499) Co-authored-by: Johannes Reiff <mail@jreiff.de> 09 August 2021, 22:34:58 UTC
40b353b bpo-38840: Incorrect __all__ in multiprocessing.managers (GH-18034) (GH-27684) This was causing test___all__ to fail on platforms lacking a shared memory implementation. Co-Authored-By: Xavier de Gaye <xdegaye@gmail.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit d0978761118856e8ca8ea7b162a6585b8da83df9) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 09 August 2021, 17:31:10 UTC
26539ce [3.9] Upgrade bundled pip and setuptools (GH-27625) (GH-27658) pip is now 21.2.3 setuptools is now 57.4.0. (cherry picked from commit 738ac00a08cb6a9d104ec85ccb1a44c2399d6baa) Co-authored-by: Tzu-ping Chung <uranusjr@gmail.com> 09 August 2021, 14:46:15 UTC
037ef8d bpo-44522: Fix inaccurate information in open() function (GH-27650) (GH-27682) - Use "Low surrogate code units" instead of "Unicode Private Use Area" (cherry picked from commit b05e9b63fcfcd4bd7a6434fa9f9a7028d12f91c4) Co-authored-by: meowmeowmeowcat <meowmeowcat1211@gmail.com> 09 August 2021, 14:39:31 UTC
ede221e bpo-32695: Docs and tests for compresslevel and preset kwargs in tarfile (GH-21470) (GH-27674) Co-Authored-By: Bo Bayles <bbayles@gmail.com> (cherry picked from commit eb2d4a66ff07aa6e51cfaaa31afed31addf76936) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 09 August 2021, 10:30:00 UTC
6a6bcf1 bpo-44830 - Remove the broken Broken Mozilla devguide link. (GH-27664) (GH-27665) (cherry picked from commit ebecffdb6d5fffa4249f9a813f1fc1915926feb5) Co-authored-by: Senthil Kumaran <senthil@python.org> Co-authored-by: Senthil Kumaran <senthil@python.org> 08 August 2021, 03:44:08 UTC
ed718e9 bpo-44856: Possible reference leak in error paths of update_bases() and __build_class__ (GH-27647) (GH-27651) (cherry picked from commit a40675c659cd8c0699f85ee9ac31660f93f8c2f5) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> 07 August 2021, 11:17:41 UTC
c352412 [3.9] bpo-44822: Don't truncate `str`s with embedded NULL chars returned by `sqlite3` UDF callbacks (GH-27588). (GH-27639) (cherry picked from commit 8f010dc920e1f6dc6a357e7cc1460a7a567c05c6) 06 August 2021, 21:02:06 UTC
62bce24 bpo-27752: improve documentation of csv.Dialect (GH-26795) (GH-27644) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 0ffdced3b64ba5886fcde64266a31a15712da284) Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com> 06 August 2021, 20:33:21 UTC
fde8417 bpo-44605: Teach @total_ordering() to work with metaclasses (GH-27633) (GH-27641) 06 August 2021, 19:57:52 UTC
91f6d38 bpo-44756: [docs] revert automated virtual environment creation on `make html` (GH-27635) (GH-27636) It turned out to be disruptive for downstream distributors. (cherry picked from commit 55fa87b1ef46bbb9db7612b2dc2dd7fb039d9bc3) Co-authored-by: Łukasz Langa <lukasz@langa.pl> 06 August 2021, 18:42:27 UTC
8c07fef [3.9] bpo-43853: Handle sqlite3_value_text() errors (GH-25422). (GH-27627) (cherry picked from commit 006fd869e4798b68e266f5de89c83ddb531a756b) 06 August 2021, 17:57:39 UTC
8c17db6 bpo-44679: [doc] fix typo in unittest.mock.rst (GH-27618) (GH-27619) (cherry picked from commit 938e84b4fa410f1a86f5e0708ebc3af6bb8efb0e) Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com> 06 August 2021, 15:38:21 UTC
791c28a bpo-44849: Fix os.set_inheritable() on FreeBSD 14 with O_PATH (GH-27623) Fix the os.set_inheritable() function on FreeBSD 14 for file descriptor opened with the O_PATH flag: ignore the EBADF error on ioctl(), fallback on the fcntl() implementation. (cherry picked from commit c24896c0e3b32c8a9f614ef51366007b67d5c665) Co-authored-by: Victor Stinner <vstinner@python.org> 06 August 2021, 13:42:51 UTC
693a661 [3.9] bpo-40928: notify users running test_decimal on macOS of malloc warnings (GH-26783) (GH-27629) * When trying to allocate very large regions on macOS, malloc does not fail silently. It sends a noisy error out to STDERR * This provides a helper function to warn the user, and provides the warning for test_decimal, which consistently generates these warnings on macOS. Co-authored-by: Łukasz Langa <lukasz@langa.pl>. (cherry picked from commit 15d3c14df32a35ac69898a7852115722e30d7857) Co-authored-by: Jack DeVries <58614260+jdevries3133@users.noreply.github.com> 06 August 2021, 13:35:11 UTC
7dad033 bpo-42958: Improve description of shallow= in filecmp.cmp docs (GH-27166) (GH-27608) Co-authored-by: Łukasz Langa <lukasz@langa.pl> Co-authored-by: Alexander Vandenbulcke <alexander.vandenbulcke95@gmail.com> (cherry picked from commit a8dc4893d2b28827e82447326ea47759c161a722) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 04 August 2021, 20:09:45 UTC
1a2c0ec [doc] bpo-43066: zipfile - add note on leading slash in the filename arg (GH-26899) (GH-27606) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 7c5dab4340032eb15d3797d8b601ef11649bbab3) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 04 August 2021, 20:00:52 UTC
60ec3b8 Fix typo in 'xml.dom.minidom' documentation (GH-27602) (GH-27604) (cherry picked from commit cc77193127381be16467ad10f421d3ba147ed972) Co-authored-by: Cristián Maureira-Fredes <cmaureir@users.noreply.github.com> 04 August 2021, 19:53:29 UTC
ed0d91b Fix 404 link to the pyporting mailing list (GH-27320) (GH-27601) Co-authored-by: Mariatta Wijaya <Mariatta@users.noreply.github.com> Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 977d99d1cca6ddd87fe6f218bca46e7ef105bd72) Co-authored-by: Rohit Nishad <47008599+rohitnishad613@users.noreply.github.com> 04 August 2021, 19:23:48 UTC
467c873 Note that tp_clear and m_clear are not always called (GH-27581) (GH-27597) (cherry picked from commit 10faada709561663d6b1f623d308ff45e3808cca) Co-authored-by: Petr Viktorin <encukou@gmail.com> 04 August 2021, 18:24:03 UTC
bf9425b Fix hyperlink conflict in turtle docs (GH-27592) (GH-27595) (cherry picked from commit 3d2b4c6f18d7e644e5850d2af74ac5dc530eb24c) Co-authored-by: Harry <harry.lees@gmail.com> 04 August 2021, 18:15:19 UTC
f26fec4 bpo-41886: Fix documented type of PyType_Type (GH-22454) (cherry picked from commit ac811f9b5a68ce8756911ef2c8be83b46696018f) Co-authored-by: da-woods <dw-git@d-woods.co.uk> 03 August 2021, 17:48:08 UTC
b5f0261 bpo-41737: expand doc for NotADirectoryError (GH-27471) (GH-27577) (cherry picked from commit f7c23a99cd4f8179b6ba2cffaeb78b852c0f6488) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 03 August 2021, 12:03:40 UTC
0b551db bpo-39091: Fix segfault when Exception constructor returns non-exception for gen.throw. (GH-17658) (GH-27573) Co-authored-by: Benjamin Peterson <benjamin@python.org> (cherry picked from commit 83ca46b7784b7357d82ec47b33295e09ed7380cb) Co-authored-by: Noah <33094578+coolreader18@users.noreply.github.com> 03 August 2021, 10:10:54 UTC
c50a672 bpo-44782: Improve OrderedDict recipe for LRU cache variants (GH-27536) (GH-27567) 02 August 2021, 18:37:42 UTC
e0d599f bpo-35183: Add typical examples to os.path.splitext docs (GH-27286) (GH-27564) (cherry picked from commit aa0894b3792901adb91e5f6d049154b7bcb980ec) Co-authored-by: Jake Stockwin <jake.stockwin@optimorlabs.com> 02 August 2021, 18:08:10 UTC
77a96da Document PyMember_GetOne and PyMember_SetOne (GH-27555) (GH-27561) (cherry picked from commit d382bde220b4c07cce2b924ffeb7525ea1a969f4) Co-authored-by: Ken Jin <28750310+Fidget-Spinner@users.noreply.github.com> 02 August 2021, 16:53:55 UTC
0f6a773 bpo-44806: Fix __init__ in subclasses of protocols (GH-27545) (GH-27559) Non-protocol subclasses of protocol ignore now the __init__ method inherited from protocol base classes. (cherry picked from commit 043cd60abed09edddc7185bcf7d039771acc734d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 02 August 2021, 16:52:16 UTC
4817c14 bpo-44785: Silence deprecation warnings in test_pickle (GH-27538) (#27557) (cherry picked from commit 36d952d228582b0ffc7a86c520d4ddbe8943d803) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 02 August 2021, 16:39:25 UTC
2ee0959 doc: "Mac OS " -> "macOS" (GH-27534) (GH-27549) (cherry picked from commit 1342248f3a2b321b7b00867f47c92ba6549f9497) Co-authored-by: partev <petrosyan@gmail.com> 02 August 2021, 13:13:52 UTC
4f2405a doc: "Mac OS X" -> "macOS" (GH-27535) (GH-27547) (cherry picked from commit 414dcb13aaa4fd42f264fdee47782dede5c83d6c) Co-authored-by: partev <petrosyan@gmail.com> 02 August 2021, 13:13:34 UTC
2d11797 bpo-44667: Treat correctly lines ending with comments and no newlines in the Python tokenizer (GH-27499) (GH-27501) (cherry picked from commit b6bde9fc42aecad5be0457198d17cfe7b481ad79) Co-authored-by: Pablo Galindo Salgado <Pablogsal@gmail.com> 02 August 2021, 09:44:01 UTC
2efa781 Trivial typo in docstring (#27505) (cherry picked from commit 4b4227b907a262446b9d276c274feda2590a4e6e) Co-authored-by: Jesús Cea <jcea@jcea.es> Co-authored-by: Jesús Cea <jcea@jcea.es> 31 July 2021, 05:04:38 UTC
0f42b72 bpo-42892: fix email multipart attribute error (GH-26903) (GH-27493) (cherry picked from commit e3f877c32d7cccb734f45310f26beeec793364ce) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 30 July 2021, 17:30:58 UTC
b57011d bpo-41911: Update docs for various expressions (GH-27470) (GH-27491) Co-authored-by: Łukasz Langa <lukasz@langa.pl> (cherry picked from commit 4bd9caafb64589288e5171087070bde726178c58) Co-authored-by: andrei kulakov <andrei.avk@gmail.com> 30 July 2021, 17:25:58 UTC
back to top