https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
dfa645a Python 3.8.4 13 July 2020, 12:11:53 UTC
c77f71f bpo-41228: Fix /a/are/ in monthcalendar() descripton (GH-21372) (cherry picked from commit 344dce312a0cf86d5a5772d54843cc179acaf6e3) Co-authored-by: Nima Dini <nima.dini@gmail.com> 11 July 2020, 02:09:07 UTC
a1d2084 Fix typo in docs: 'created by th' -> 'created by the' (GH-21384) (cherry picked from commit 6fc732a2116e2c42b0431bb7e2a21719351af755) Co-authored-by: marload <rladhkstn8@gmail.com> 10 July 2020, 15:51:31 UTC
33672c0 bpo-41175: Guard against a NULL pointer dereference within bytearrayobject (GH-21240) The issue is triggered by the bytearray() + bytearray() operation. Detected by GCC 10 static analysis tool. (cherry picked from commit 61fc23ca106bc82955b0e59d1ab42285b94899e2) Co-authored-by: stratakis <cstratak@redhat.com> 10 July 2020, 10:15:59 UTC
3d1c06e bpo-37765: Add keywords to IDLE tab completions (GH-15138) Keywords are present in the main module tab completion lists generated by rlcompleter, which is used by REPLs on *nix. Add all keywords to IDLE's main module name list except those already added from builtins (True, False, and None) . This list may also be used by Show Completions on the Edit menu, and its hot key. Rewrite Completions doc. Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com> (cherry picked from commit bce2eb4646021910aa4074d86f44a09b32d0b2b2) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 09 July 2020, 22:54:44 UTC
0b6169e bpo-41247: asyncio.set_running_loop() cache running loop holder (#21406) The running loop holder cache variable was always set to NULL when calling set_running_loop. Now set_running_loop saves the newly created running loop holder in the cache variable for faster access in get_running_loop. 09 July 2020, 17:38:46 UTC
1e66f7e bpo-41199: Docstring convention not followed for dataclasses documentation page (GH-21413) Automerge-Triggered-By: @ericvsmith (cherry picked from commit 61bb24a270d15106decb1c7983bf4c2831671a75) Co-authored-by: marload <rladhkstn8@gmail.com> 09 July 2020, 12:21:11 UTC
54babbe bpo-41252: Fix incorrect refcounting in _ssl.c's _servername_callback() (GH-21407) (cherry picked from commit ee96f32ca24779656d3c8736d26671fc3689f0a3) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 09 July 2020, 10:15:36 UTC
c1c5034 bpo-40597: Allow email.contextmanager set_content() to set a null string. (GH-20542) (cherry picked from commit 4fa61a7732923f92de0f7830c12da48c4cec937f) Co-authored-by: Mark Sapiro <mark@msapiro.net> 08 July 2020, 21:18:38 UTC
c8b599f closes bpo-41235: Fix the error handling in SSLContext.load_dh_params() (GH-21385) (cherry picked from commit aebc0495572c5bb85d2bd97d27cf93ab038b5a6a) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 08 July 2020, 04:37:50 UTC
730bce3 bpo-39417: Fix broken link to guide to building venvs (GH-18432) (cherry picked from commit c4a65ed7fe342bd18b5a5b0eea3470dc4fc31160) Co-authored-by: Ogi Moore <ognyan.moore@jacobs.ucsd.edu> 07 July 2020, 23:47:09 UTC
b71ff9a bpo-41218: Improve the test cases for test_compile_top_level_await_no_coro (GH-21363) (cherry picked from commit c2c1f1f906cdeb40576880d4b6a4f8fcbc016eb8) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 06 July 2020, 23:30:46 UTC
41db8ff bpo-41218: Only mark async code with CO_COROUTINE. (GH-21357) 3.8.3 had a regression where compiling with ast.PyCF_ALLOW_TOP_LEVEL_AWAIT woudl agressively mark things are coroutine even if there were not. (cherry picked from commit bd46174a5a09a54e5ae1077909f923f56a7cf710) Co-authored-by: Matthias Bussonnier <bussonniermatthias@gmail.com> 06 July 2020, 21:44:16 UTC
aa7f775 bpo-29778: Ensure python3.dll is loaded from correct locations when Python is embedded (GH-21297) (GH-21352) Also enables using debug build of `python3_d.dll` Reference: CVE-2020-15523 (cherry picked from commit dcbaa1b49cd9062fb9ba2b9d49555ac6cd8c60b5) Co-authored-by: Steve Dower <steve.dower@python.org> 06 July 2020, 17:12:16 UTC
6790f9b bpo-28681: Clarify multiple function names in the tutorial (GH-21340) (GH-21344) * improve control flow docs * Add also Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit d12af71047f0eae86440654d3ea74c032c7c3558) Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> 06 July 2020, 02:07:59 UTC
7ceb3e3 bpo-26205: Specify the number of nested scopes (GH-21324) (GH-21342) * Clarify number of scopes * Indicate 3 or 4 Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit 9ed3cd8ba052b395ab50692bb65988b065d68e27) Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> Co-authored-by: Joannah Nanjekye <33177550+nanjekyejoannah@users.noreply.github.com> 06 July 2020, 01:53:40 UTC
8912c18 bpo-39960: Allow heap types in the "Carlo Verre" hack check that override "tp_setattro()" (GH-21092) (GH-21339) Backport to Py3.8. 05 July 2020, 20:12:04 UTC
01c0925 bpo-41211: Doc: Fix PyLong_FromUnicode (GH-21331) PyUnicode_EncodeDecimal is not used actually. (cherry picked from commit 16f451744b7f4653ca9db4b4bedbb6fc5c0de154) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 05 July 2020, 05:35:58 UTC
4874e59 bpo-41211: Doc: Fix PyLong_FromUnicodeObject (GH-21325) It doesn't use PyUnicode_EncodeDecimal. It uses a private API instead. (cherry picked from commit 9c8441712230660fedac818ed50e7cdd89e4c51d) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 05 July 2020, 04:09:18 UTC
6857ebe bpo-33864: Clarify the docs for typing.ByteString (GH-21311) (cherry picked from commit b40e434386cd94a367d4a256e3364771140160e7) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 04 July 2020, 04:06:07 UTC
b9e288c bpo-41162: Clear audit hooks later during finalization (GH-21222) Co-authored-by: Konge <zkonge@outlook.com> 03 July 2020, 23:04:22 UTC
c1d9165 bpo-41180: Audit code.__new__ when unmarshalling (GH-21271) (cherry picked from commit d160e0f8e283d0a8737644588b38e8c6a07c134f) Co-authored-by: tkmikan <36260601+tkmikan@users.noreply.github.com> 03 July 2020, 21:13:29 UTC
53d2b71 bpo-41193: Ignore OSError in readline write_history() (GH-21279) The write_history() atexit function of the readline completer now ignores any OSError to ignore error if the filesystem is read-only, instead of only ignoring FileNotFoundError and PermissionError. (cherry picked from commit 0ab917e07ed64c6bfde6f6e791f9b28acc97b510) Co-authored-by: Victor Stinner <vstinner@python.org> 02 July 2020, 11:02:08 UTC
e738962 [3.8] bpo-41043: Escape literal part of the path for glob(). (GH-20994). (GH-21277) (cherry picked from commit 935586845815f5b4c7814794413f6a812d4bd45f) 02 July 2020, 07:05:35 UTC
cbdacb9 3.8.3 -> 3.8.4 in macOS installer ReadMe (GH-21274) 02 July 2020, 05:58:31 UTC
c3fa753 bpo-41158: IDLE: rewrite the code for handling file encoding (GH-21215) (cherry picked from commit 694d31e714074176f0c324f95948b75dc768c091) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 01 July 2020, 18:22:45 UTC
42f05e6 Doc: Minor fix to init config C API documentation (GH-21198) Co-authored-by: Tomer Vromen <tomer.vromen@intel.com> (cherry picked from commit 741008a57bdc95090b8be6ded5a9fd3f17f7bf21) Co-authored-by: tomerv <tomerv@gmail.com> 01 July 2020, 09:40:55 UTC
3e5b200 Post 3.8.4rc1 30 June 2020, 16:03:38 UTC
26d1d1d Merge tag 'v3.8.4rc1' into 3.8 Python 3.8.4rc1 30 June 2020, 16:03:07 UTC
c81f9e2 Update FAQ release schedule and estimated users (GH-21180) Update FAQ to include: * The new yearly release schedule from PEP 602 * Estimated users from "tens of thousands" to "millions" (cherry picked from commit 3fa4799c3f9d9de7cac30e5db3627e9e125b9ce5) Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com> 30 June 2020, 09:51:21 UTC
41d6e3f bpo-41123: Remove PyUnicode_AsUnicodeCopy in 3.10 (GH-21227) (cherry picked from commit 2ea6a9928e4fa135888cc8f4733c28d93e642301) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 30 June 2020, 08:49:09 UTC
00fd04b bpo-41152: IDLE: always use UTF-8 for standard IO streams (GH-21214) (cherry picked from commit 2515a28230b1a011205f30263da6b01c6bd167a3) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 30 June 2020, 00:39:02 UTC
6c38841 Python 3.8.4rc1 29 June 2020, 22:30:11 UTC
dc8ce8e bpo-41004: Resolve hash collisions for IPv4Interface and IPv6Interface (GH-21033) The __hash__() methods of classes IPv4Interface and IPv6Interface had issue of generating constant hash values of 32 and 128 respectively causing hash collisions. The fix uses the hash() function to generate hash values for the objects instead of XOR operation (cherry picked from commit b30ee26e366bf509b7538d79bfec6c6d38d53f28) Co-authored-by: Ravi Teja P <rvteja92@gmail.com> 29 June 2020, 18:12:50 UTC
7731139 bpo-41048: mimetypes should read the rule file using UTF-8, not the locale encoding (GH-20998) (cherry picked from commit 7f569c9bc0079906012b3034d30fe8abc742e7fc) Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <thatiparthysreenivas@gmail.com> 29 June 2020, 12:07:41 UTC
12bb0b6 Update ssl.rst 29 June 2020, 07:34:35 UTC
ea16430 bpo-41123: Doc: PyLong_FromUnicode will be removed in 3.10 (GH-21205) (cherry picked from commit 02134dae448c7885c9c07adfc6970f878db33372) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 29 June 2020, 05:36:04 UTC
cb53b8c [3.8] bpo-41138: Fix trace CLI for non-UTF-8 files. (GH-21177) (GH-21200) Fix also a resource warning when store counts and module info. (cherry picked from commit 04cdeb7a5617c48102f45b965e683b12cdf934f8) 28 June 2020, 14:30:08 UTC
86ef6fe bpo-41144: Fix IDLE open module error (GH-21182) Could not open os.path. Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit 8ab77c6f9fb6ef86af8f6b8722a2fcb37438edd0) Co-authored-by: E-Paine <63801254+E-Paine@users.noreply.github.com> 28 June 2020, 06:20:13 UTC
e653369 [3.8] bpo-35975: Only use cf_feature_version if PyCF_ONLY_AST in cf_flags (#21023) 28 June 2020, 00:35:05 UTC
749d3bc [3.8] bpo-41132: Use pymalloc allocator in the f-string parser (GH-21173) (GH-21184) Automerge-Triggered-By: @pablogsal 27 June 2020, 18:43:41 UTC
027bba2 bpo-41100: clarify NEWS item about macOS 11 support (GH-21174) (cherry picked from commit 2f168c6356f92c38ae7751d2faf2b266a9356229) Co-authored-by: Ned Deily <nad@python.org> 27 June 2020, 08:52:50 UTC
c4a53e4 BPO-41100: Support macOS 11 when building (GH-21113) (cherry picked from commit 8ea6353f60625c96ce96588c70ff24a77f8c71f9) Co-authored-by: Ronald Oussoren <ronaldoussoren@mac.com> 25 June 2020, 15:15:06 UTC
8075fe1 [3.8] bpo-41009: fix requires_OS_version() class decorator (GH-20942) (GH-20948) Signed-off-by: Christian Heimes <christian@python.org> Automerge-Triggered-By: @tiran. (cherry picked from commit bb6ec14479f18c32e71e43f2785f177aa17aabbd) Co-authored-by: Christian Heimes <christian@python.org> 25 June 2020, 12:18:43 UTC
f547d06 bpo-41113: Fix test_warnings on non-Western locales. (GH-21143) (cherry picked from commit 0f8ec1fff01173803645ad6a8aea24997bf66fc1) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 25 June 2020, 12:04:56 UTC
7318f0a bpo-40204: Pin Sphinx version to 2.3.1 in ``Doc/Makefile``. (GH-21141) (GH-21147) 25 June 2020, 11:44:14 UTC
84f9c23 bpo-35773: Fix test_bdb on non-UTF-8 locales. (GH-21136) (cherry picked from commit 94eee69e9b3a7e7d33142a47ffea560beb8f1596) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 25 June 2020, 11:37:38 UTC
4564ebb bpo-39580: add check for CLI installation on macOS (GH-20271) Adds a simple check for whether or not the package is being installed in the GUI or using installer on the command line. This addresses an issue where CLI-based software management tools (such as Munki) unexpectedly open Finder windows into a GUI session during installation runs. (cherry picked from commit 5f190d2cc60cd82a604cbffb58b6ca8f40350a7a) Co-authored-by: Rick Heil <rickheil@partnersandsimons.com> 25 June 2020, 10:56:14 UTC
8127dab Forward port macOS installer updates from 3.7 (GH-21132) (GH-21137) - fix installer builds when using latest versions of Python 3 - fix installer builds on newer macOS releases with SIP - Python Launcher app factory defaults now use python3 - 3.x installer now updates the Current symlink in framework 25 June 2020, 10:15:37 UTC
3f4de44 bpo-41074: Fix support of non-ASCII names and SQL in msilib. (GH-21126) * Fix support of non-ASCII names in functions OpenDatabase() and init_database(). * Fix support of non-ASCII SQL in method Database.OpenView(). (cherry picked from commit 55939b1708d6fc0d36d2be11ccdc6bf207e1bd41) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 25 June 2020, 09:12:41 UTC
ec05a7f bpo-40773: Fix rendering for 'retval' on the pdb page (GH-21081) Automerge-Triggered-By: @merwok (cherry picked from commit cf18c9e9d4d44f6671a3fe6011bb53d8ee9bd92b) Co-authored-by: Arisaka97 <solitaire2312@gmail.com> 24 June 2020, 22:03:11 UTC
1dda40c bpo-41094: Additional fix for PYTHONSTARTUP. (GH-21119) (cherry picked from commit a7dc71470156680f1fd5243290c6d377824b7ef4) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 24 June 2020, 17:03:51 UTC
1813d31 bpo-41094: Fix decoding errors with audit when open files. (GH-21095) (cherry picked from commit 6c6810d98979add7a89391c3c38990d0859f7a29) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 24 June 2020, 16:45:38 UTC
fb4a624 bpo-41038: Fix non-ASCII string corruption in Win32 resource files (GH-20985) In absence of explicit declaration, resource compiler uses system codepage. When this codepage is DBCS or UTF-8, Python's copyright string is corrupted, because it contains copyright sign encoded as \xA9. The fix is to explicitly declare codepage 1252. (cherry picked from commit 33b79b11b891adea5a916df8e3779505b37aabe7) Co-authored-by: Nikita Nemkin <nikita@nemkin.ru> 24 June 2020, 16:42:55 UTC
adf8708 bpo-41005: Fixed perrmission error (GH-20936) (GH-21052) * fixed issue 41005: webbrowser fails when xdg-settings cannot be executed Co-authored-by: KrishnaSai2020 <krishnasai.chivukula@gmal.com> Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> (cherry picked from commit 9e27bc0c1efc7478872f98729f87886e9333548f) Co-authored-by: Krishna Chivukula <63070026+KrishnaSai2020@users.noreply.github.com> Co-authored-by: Krishna Chivukula <63070026+KrishnaSai2020@users.noreply.github.com> 24 June 2020, 12:58:27 UTC
0029099 Fix typo in dataclasses module (GH-21109) (#21111) Automerge-Triggered-By: @matrixise (cherry picked from commit 80526f68411a9406a9067095fbf6a0f88047cac5) Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com> Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com> 24 June 2020, 11:14:10 UTC
4f5dde4 bpo-40707: Document that Popen.communicate sets the returncode attribute (GH-20283) (cherry picked from commit bf2e515fa43406d4bd9c4c53ecc9364034d8f9f6) Co-authored-by: Gareth Rees <gdr@garethrees.org> 24 June 2020, 03:19:35 UTC
60cbdc8 [3.8] bpo-31938: Fix default-value signatures of several functions in the select module (GH-21066) (GH-21098) (cherry picked from commit d051801052211b533c46a593b1c1bccf649a171c) Automerge-Triggered-By: @vstinner 23 June 2020, 22:17:02 UTC
6eab52f bpo-39699: Remove accidentally committed test change (GH-21089) 23 June 2020, 18:28:25 UTC
c6e24e7 bpo-41085: Fix array.array.index() on 64-bit Windows (GH-21071) Fix integer overflow in the :meth:`array.array.index` method on 64-bit Windows for index larger than ``2**31``. (cherry picked from commit 1d3dad5f96ed445b958ec53dfa0d46812f2162d9) Co-authored-by: WildCard65 <WildCard65@users.noreply.github.com> 23 June 2020, 13:40:47 UTC
56d25ad Improve asyncio.loop.call_soon() documentation (GH-20883) * Add a glossary entry for the term "callback" * Link to it in loop.call_soon() and in the "Concurrency and Multithreading" section Co-authored-by: Kyle Stanley <aeros167@gmail.com> (cherry picked from commit a16d6970496cae5ecab5aaea2b416a4b77527cc2) Co-authored-by: Roger Iyengar <ri@rogeriyengar.com> 23 June 2020, 02:23:49 UTC
d7f37d1 bpo-41068: Fix read after write in zipfile for non-ASCII files names. (GH-21040) (cherry picked from commit 36ff513f82e372ed3cea0bf7cbdf15a1ef6dab9e) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 22 June 2020, 08:40:05 UTC
b99824a bpo-40824: Do not mask errors in __iter__ in "in" and the operator module. (GH-20537) Unexpected errors in calling the __iter__ method are no longer masked by TypeError in the "in" operator and functions operator.contains(), operator.indexOf() and operator.countOf(). (cherry picked from commit cafe1b6e9d3594a34aba50e872d4198296ffaadf) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 22 June 2020, 08:21:04 UTC
d5ee9b9 bpo-41056: Fix reference to deallocated stack in pathconfig (Coverity) (GH-21013) Reported by Coverity. (CID 1457554 RETURN_LOCAL) path0 is assigned as a pointer to this right before it goes out of scope. (cherry picked from commit 81328f30703bd7225e7e73aedb0994a7293ce190) Co-authored-by: Gregory P. Smith <greg@krypto.org> 22 June 2020, 07:43:41 UTC
1419559 bpo-41058: Use source file encoding in pdb.find_function(). (GH-21010) (cherry picked from commit 19fcffa92773e008e4f5efb80047420a0cfafeec) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 21 June 2020, 19:36:23 UTC
10bf6e4 bpo-41056: Fix a NULL pointer dereference on MemoryError within the ssl module. (GH-21009) Detected by Coverity. (cherry picked from commit eb0d5c38de7f970d8cd8524f4163d831c7720f51) Co-authored-by: Gregory P. Smith <greg@krypto.org> 21 June 2020, 19:11:29 UTC
a4c0956 Add link to .pypirc specification (GH-20680) (#21019) Related to https://github.com/pypa/twine/issues/638 and https://github.com/pypa/packaging.python.org/issues/730, I wrote a spec based on the one that was removed in https://github.com/python/cpython/pull/13087. However, a Google search for "pypirc" turned up at least one [blog post](https://truveris.github.io/articles/configuring-pypirc/) that links to https://docs.python.org/3/distutils/packageindex.htmlGH-the-pypirc-file, which now just links to this document. So, I thought a link to the spec would be handy. Automerge-Triggered-By: @jaraco (cherry picked from commit af157fad286c00ff204e86d8556648cbb53ba99e) Co-authored-by: Brian Rutledge <brian@bhrutledge.com> Co-authored-by: Brian Rutledge <brian@bhrutledge.com> 20 June 2020, 21:12:27 UTC
80651ab bpo-41040: Fix test_modulefinder. (GH-20991) (cherry picked from commit a041e116db5f1e78222cbf2c22aae96457372680) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 19 June 2020, 21:25:25 UTC
ec9bc2d bpo-38377: Fix skip_if_broken_multiprocessing_synchronize() on macOS (GH-20984) skip_if_broken_multiprocessing_synchronize() only attempts for create a semaphore on Linux to fix multiprocessing test_resource_tracker_reused() on macOS. (cherry picked from commit 3358da4054b9b0b045eb47dc74dee3d58bfbb1d5) Co-authored-by: Victor Stinner <vstinner@python.org> 19 June 2020, 16:19:38 UTC
4dd10ed Improve readability of `formataddr` docstring (GH-20963) For me as a non native English speaker, the sentence with its embedded clause was very hard to understand. modified: Lib/email/utils.py Automerge-Triggered-By: @csabella (cherry picked from commit 66a65ba43cb3e68a43e32469c988dd7a6cff049c) Co-authored-by: Jürgen Gmach <juergen.gmach@googlemail.com> 19 June 2020, 12:15:57 UTC
e805618 bpo-38377: Add support.skip_if_broken_multiprocessing_synchronize() (GH-20944) (GH-20962) (GH-20966) On Linux, skip tests using multiprocessing if the current user cannot create a file in /dev/shm/ directory. Add the skip_if_broken_multiprocessing_synchronize() function to the test.support module. (cherry picked from commit ddbeb2f3e02a510c5784ffd74c5e09e8c70b5881) (cherry picked from commit b1e736113484c99acb57e4acb417b91a9e58e7ff) 18 June 2020, 16:56:43 UTC
3d974b2 bpo-41003: Fix test_copyreg when numpy is installed (GH-20935) (GH-20945) (GH-20946) Fix test_copyreg when numpy is installed: test.pickletester now saves/restores warnings.filters when importing numpy, to ignore filters installed by numpy. Add the save_restore_warnings_filters() function to the test.support.warnings_helper module. (cherry picked from commit 8362893e3fe083df2ec8bb94c28b1a78383eadbf) (cherry picked from commit b39d41ba1b77f7bc51c4d6f6d0e336693192cb3a) 17 June 2020, 17:09:49 UTC
071bed8 bpo-40993: Don't run Travis CI coverage on PRs (GH-20916) C and Python coverage jobs of Travis CI are no longer run on pull requests, only on branches like master. (cherry picked from commit fc710ee266e9461fdba9933ec6004318db588820) Co-authored-by: Victor Stinner <vstinner@python.org> 16 June 2020, 15:47:16 UTC
e63cc2f bpo-38488: Upgrade bundled versions of pip & setuptools (GH-20491) (GH-20900) Co-authored-by: Xavier Fernandez <xav.fernandez@gmail.com> 15 June 2020, 21:42:22 UTC
a1d3be4 bpo-40448: ensurepip: Do not use cache (GH-19812) ensurepip optionally installs or upgrades 'pip' and 'setuptools' using the version of those modules bundled with Python. The internal PIP installation routine by default temporarily uses its cache, if it exists. This is undesirable as Python builds and installations may be independent of the user running the build, whilst PIP cache location is dependent on the user's environment and outside of the build environment. At the same time, there's no value in using the cache while installing bundled modules. This change disables PIP caching when used in ensurepip. (cherry picked from commit 4a3a682b12f93a03888e8b59f439bc5fe30d6055) Co-authored-by: Krzysztof Konopko <kkonopko@users.noreply.github.com> 15 June 2020, 17:45:21 UTC
c72b7f7 bpo-34226: fix cgi.parse_multipart without content_length (GH-8530) In Python 3.7 the behavior of parse_multipart changed requiring CONTENT-LENGTH header, this fix remove this header as required and fix FieldStorage read_lines_to_outerboundary, by not using limit when it's negative, since by default it's -1 if not content-length and keeps substracting what was read from the file object. Also added a test case for this problem. (cherry picked from commit d8cf3514dd4682419a66f6e834bb384ee34afc95) Co-authored-by: roger <rogerduran@gmail.com> 15 June 2020, 15:51:35 UTC
811e040 bpo-40855: Fix ignored mu and xbar parameters (GH-20835) (GH-20863) 13 June 2020, 23:57:17 UTC
f8c05bb [3.8] bpo-37674: Tweak imp module deprecation note in the docs (GH-20480) (GH-20860) (cherry picked from commit dea3223740127ac13f984c1d38f127ab6701af44) Co-authored-by: Zackery Spytz <zspytz@gmail.com> Automerge-Triggered-By: @brettcannon 13 June 2020, 20:55:56 UTC
a8936fa bpo-40957: Fix refleak in _Py_fopen_obj() (GH-20827) Signed-off-by: Christian Heimes <christian@python.org> (cherry picked from commit 9672912e8f90374fd31b37ca0fb7cefbc6f4c555) Co-authored-by: Christian Heimes <christian@python.org> 13 June 2020, 16:15:05 UTC
26db10a bpo-40834: Fix truncate when sending str object with channel (GH-20555) (cherry picked from commit 29c117202e386bad1d66ae336e2fefa1a1809ee0) Co-authored-by: An Long <aisk@users.noreply.github.com> 13 June 2020, 12:44:50 UTC
7e57c36 bpo-40164: Update Windows OpenSSL to 1.1.1g (GH-20834) Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <thatiparthysreenivas@gmail.com> 12 June 2020, 21:14:53 UTC
adce133 bpo-40964: disable remote IMAP tests (GH-20836) Remote host cyrus.andrew.cmu.edu is blocking incoming connections and is causing test suite to fail. Signed-off-by: Christian Heimes <christian@python.org> 12 June 2020, 19:08:32 UTC
a3d6d23 bpo-40626: Support HDF5 in mimetypes (GH-20042) Add hdf5 with .h5 file extension See 'Recommendations' section for mime types from the HDF group: https://www.hdfgroup.org/2018/06/citations-for-hdf-data-and-software/ Patch by Mark Schwab. (cherry picked from commit 60c2a810e37994fc640c58d0ef45b6843354b770) Co-authored-by: MARK SCHWAB <32745414+schwabm@users.noreply.github.com> 11 June 2020, 19:32:37 UTC
3e499cd bpo-29620: iterate over a copy of sys.modules (GH-4800) (GH-20816) unittest.TestCase.assertWarns no longer raises a RuntimeException when accessing a module's ``__warningregistry__`` causes importation of a new module, or when a new module is imported in another thread. (cherry picked from commit 46398fba4d66ad342cf2504ef947b5fb857423b2) Co-authored-by: kernc <kerncece@gmail.com> 11 June 2020, 18:31:46 UTC
5b8e3a5 bpo-34401: Fix test_gdb for HP GDB version string (GH-20804) The GDB provided by HPE on HP-UX contains a modified version string. Therefore the tests fail. Adapt the regex to match that string. Patch by Michael Osipov. Co-Authored-by: Michael Osipov <michael.osipov@siemens.com> (cherry picked from commit b2dca49ca3769cb60713f5c2b43e5d5bbdc1f9c7) Co-authored-by: Victor Stinner <vstinner@python.org> 11 June 2020, 14:07:39 UTC
972aba8 [3.8] bpo-40895: Update weakref documentation to remove old warnings (GH-20687) (GH-20792) The doccumentation at https://docs.python.org/3.10/library/weakref.html cautions that the `WeakKeyDictionary` and `WeakValueDictionary` are susceptible to the problem of dictionary mutation during iteration. These notes present the user with a problem that has no easy solution. I dug into the implementation and found that fortunately, Antoine Pitrou already addressed this challenge (10 years ago!) by introducing an `_IterationGuard` context manager to the implementation, which delays mutation while an iteration is in progress. I asked for confirmation and @pitrou agreed that these notes could be removed: https://github.com/python/cpython/commit/c1baa601e2b558deb690edfdf334fceee3b03327GH-commitcomment-39514438. (cherry picked from commit 1642c0ef750f96664a98cadb09301d492098d2fb) Co-authored-by: Daniel Fortunov <asqui@users.noreply.github.com> Automerge-Triggered-By: @pitrou 10 June 2020, 20:38:42 UTC
c7a6c7b bpo-40826: Fix test_repl.test_close_stdin() on Windows (GH-20779) (GH-20785) (GH-20787) test_repl.test_close_stdin() now calls support.suppress_msvcrt_asserts() to fix the test on Windows. * Move suppress_msvcrt_asserts() from test.libregrtest.setup to test.support. Make its verbose parameter optional: verbose=False by default. * SuppressCrashReport now uses SetErrorMode() of the msvcrt module, rather than using ctypes. * Remove also an unused variable (deadline) in wait_process(). (cherry picked from commit f6e58aefde2e57e4cb11ea7743955da53a3f1e80) (cherry picked from commit 4a4f660cfde8b683634c53e6214a6baa51de43b1) 10 June 2020, 17:45:47 UTC
663836e [3.8] bpo-34003: Re-add versionchanged entry in csv docs (GH-20657) (GH-20771) Follow-up to GH-8014 (cherry picked from commit 7aed0524d4129766a6032326949ef7f91f6f6dfc) Co-authored-by: Éric Araujo <merwok@netwok.org> Automerge-Triggered-By: @merwok 10 June 2020, 01:26:16 UTC
0f5a28f [3.8] Revert bpo-39576: Prevent memory error for overly optimistic precisions (GH-20747) This reverts commit b6271025c640c228505dc9f194362a0c2ab81c61. 08 June 2020, 23:57:11 UTC
32c1fb0 [3.8] Revert bpo-39576: docs: set context for decimal arbitrary precision arithmetic (GH-20745) This reverts commit d6965ff026f35498e554bc964ef2be8f4d80eb7f. 08 June 2020, 23:33:08 UTC
706de4e [3.8] Revert bpo-39576: Clarify the word size for the 32-bit build. (GH-20743) This reverts commit c6ecd9c14081a787959e13df33e250102a658154. 08 June 2020, 23:20:58 UTC
14073c5 bpo-24914: mention Python supports multiple paradigms in the FAQ (GH-20658) (GH-20738) (cherry picked from commit 3ab3475c42c8ee5580f4ea1aeda73ebc8e5d5478) Co-authored-by: Brett Cannon <brett@python.org> Co-authored-by: Brett Cannon <brett@python.org> 08 June 2020, 18:53:25 UTC
30513b6 bpo-40861: Enable optimizations when building liblzma (GH-20724) (cherry picked from commit 3a3a30c5a4622e18be9f7e4a239dc9e0d7c8054c) Co-authored-by: Steve Dower <steve.dower@python.org> 08 June 2020, 17:07:27 UTC
12dfbae bpo-22021: Update root_dir and base_dir documentation in shutil (GH-10367) Also added an example in shutil in order to make more clear how they are to be used. Initially reported by Weinan Li on bpo. (cherry picked from commit 7633371dace67aaa21eb4b86f889441571ec4167) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> 08 June 2020, 05:08:51 UTC
264e4fd bpo-40741: Update macOS installer to use SQLite 3.32.2. (GH-20705) (cherry picked from commit 37eed5a9ee7c802e7151ee9939ed604032886639) Co-authored-by: Ned Deily <nad@python.org> 08 June 2020, 02:43:35 UTC
83a9ba4 bpo-40870: Invalidate usage of some constants with ast.Name (GH-20649) (cherry picked from commit 68874a8502da440a1dc4746cf73262648b870aee) Co-authored-by: Batuhan Taskaya <isidentical@gmail.com> 06 June 2020, 17:04:47 UTC
f7ed4d4 bpo-40614: Respect feature version for f-string debug expressions (GH-20196) (GH-20466) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> Co-authored-by: Pablo Galindo <pablogsal@gmail.com> (cherry picked from commit c116c94ff119485761460f1033cdee425bed0310) 06 June 2020, 10:08:48 UTC
c067183 bpo-40807: Show warnings once from codeop._maybe_compile (GH-20486) * bpo-40807: Show warnings once from codeop._maybe_compile * Move catch_warnings * news Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> (cherry picked from commit 052d3fc0907be253cfd64b2c737a0b0aca586011) Co-authored-by: Cheryl Sabella <cheryl.sabella@gmail.com> 06 June 2020, 08:24:45 UTC
a5d6aba [3.8] bpo-40807: Backport test_codeop change [GH-19670] A tiny sliver of a 3.9 PEG parser patch needed to backport the test added by #20486. 05 June 2020, 02:42:44 UTC
c935b33 Fix spacing in docs for tarfile (GH-20629) Before ``` content.txt is 42 bytes in size and isa regular file. folder is 420 bytes in size and isa directory. magic is 4200 bytes in size and issomething else. ``` After: ``` content.txt is 42 bytes in size and is a regular file. folder is 420 bytes in size and is a directory. magic is 4200 bytes in size and is something else. ``` Automerge-Triggered-By: @orsenthil (cherry picked from commit 7a280197f4162e5fcdde6f34701a9fa6e669190d) Co-authored-by: Harsha Laxman <HarshaLaxman@users.noreply.github.com> 04 June 2020, 20:19:47 UTC
back to top