Staging
v0.5.1
https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
23793ed bpo-35561: Supress valgrind false alarm on epoll_ctl(event) (GH-18060) Update Misc/valgrind-python.supp to suppress the false alarm. (cherry picked from commit d8ef64422a75f40cecdb1a7ee43492607d3daaf6) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 19 January 2020, 22:44:35 UTC
c7b16f8 Fix typo from base to based (GH-18055) (cherry picked from commit 558f07891170fe5173f277d3749e92d844de0a27) Co-authored-by: Michael Haas <micha2718l@gmail.com> 19 January 2020, 10:48:04 UTC
34ece35 Fix Lock.locked() to remove extra bold highlighting (GH-18042) (#18043) (cherry picked from commit ef8844f1bcbea994a2a69b5a70309369d08b555c) Co-authored-by: Grant Jenks <grant.jenks@gmail.com> Co-authored-by: Grant Jenks <grant.jenks@gmail.com> 17 January 2020, 23:02:06 UTC
19bd3a1 bpo-39348: Fix code highlight for the SOCK_NONBLOCK example (GH-18018) The previous double colon was wrongly place directly after Therefore. Which produced a block without syntax highlighting. This fixes it by separating the double colon from the text. As a result, sphinx now properly highlights the python code. https://bugs.python.org/issue39348 (cherry picked from commit fad8b5674c66d9e00bb788e30adddb0c256c787b) Co-authored-by: Oz N Tiram <oz.tiram@noris.de> 16 January 2020, 00:01:21 UTC
54abd28 [3.8] Fix typo in multiprocessing.pool.AsyncResult.successful doc. (GH-17932) (GH-18015) Since 3.7 `successful` raises a `ValueError` as explained in the next text block from the documentation: _Changed in version 3.7: If the result is not ready, ValueError is raised instead of AssertionError._ No issue associated with this PR. Should be backported in 3.7 and 3.8. (cherry picked from commit dc0284ee8f7a270b6005467f26d8e5773d76e959) Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com> Automerge-Triggered-By: @pitrou 15 January 2020, 20:19:21 UTC
9213577 Fix compiler warning on Windows (GH-18012) Python-ast.h contains a macro named Yield that conflicts with the Yield macro in Windows system headers. While Python-ast.h has an "undef Yield" directive to prevent this, it means that Python-ast.h must be included before Windows header files or we run into a re-declaration warning. In commit c96be811fa7d an include for pycore_pystate.h was added which indirectly includes Windows header files. In this commit we re-order the includes to fix this warning. (cherry picked from commit e92d39303feb1d3b4194c6a8275b1fc63b2153b2) Co-authored-by: Ammar Askar <ammar@ammaraskar.com> 15 January 2020, 17:07:09 UTC
9f220e4 Fix documentation in code.py (GH-17988) (cherry picked from commit b4cdb3f60e71888d7f3d4e0d40cb31e968ea160c) Co-authored-by: Kyle Pollina <kylepollina@protonmail.com> 14 January 2020, 20:13:59 UTC
9955f33 [3.8] bpo-39033: Fix NameError in zipimport during hash validation (GH-17588) (GH-17642) Fix `NameError` in `zipimport` during hash validation and add a regression test. (cherry picked from commit 79f02fee1a542c440fd906fd54154c73fc0f8235) https://bugs.python.org/issue39033 14 January 2020, 11:39:19 UTC
9362f85 bpo-39310: Update sys.float_info documentation (GH-17982) Specify that sys.float_info.min is only the minimum normalized float. 13 January 2020, 19:24:12 UTC
9671b6b bpo-39307: Fix memory leak on error path in parsetok (GH-17953) (cherry picked from commit 7ba6f18de2582755ae31888ba6a4237d96dddc48) Co-authored-by: Alex Henrie <alexhenrie24@gmail.com> 13 January 2020, 10:54:24 UTC
f1f0c58 [3.8] Fix typos in Misc/NEWS.d (GH-17930) 12 January 2020, 22:56:26 UTC
ef0af30 bpo-3530: Add advice on when to correctly use fix_missing_locations in the AST docs (GH-17172) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> (cherry picked from commit 6680f4a9f5d15ab82b2ab6266c6f917cb78c919a) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> 12 January 2020, 20:44:33 UTC
3043ec7 bpo-38293: Allow shallow and deep copying of property objects (GH-16438) Copying property objects results in a TypeError. Steps to reproduce: ``` >>> import copy >>> obj = property() >>> copy.copy(obj) ```` This affects both shallow and deep copying. My idea for a fix is to add property objects to the list of "atomic" objects in the copy module. These already include types like functions and type objects. I also added property objects to the unit tests test_copy_atomic and test_deepcopy_atomic. This is my first PR, and it's highly likely I've made some mistake, so please be kind :) https://bugs.python.org/issue38293 (cherry picked from commit 9f3fc6c5b4993f2b362263b494f84793a21aa073) Co-authored-by: Guðni Natan Gunnarsson <1493259+GudniNatan@users.noreply.github.com> 12 January 2020, 18:04:18 UTC
eb9ba2f bpo-16575: Disabled checks for union types being passed by value. (GH-17960) (GH-17964) Although the underlying libffi issue remains open, adding these checks have caused problems in third-party projects which are in widespread use. See the issue for examples. The corresponding tests have also been skipped. (cherry picked from commit c12440c371025bea9c3bfb94945f006c486c2c01) 12 January 2020, 11:41:07 UTC
33dd75a bpo-38356: Fix ThreadedChildWatcher thread leak in test_asyncio (GH-16552) Motivation for this PR (comment from @vstinner in bpo issue): ``` Warning seen o AMD64 Ubuntu Shared 3.x buildbot: https://buildbot.python.org/all/GH-/builders/141/builds/2593 test_devnull_output (test.test_a=syncio.test_subprocess.SubprocessThreadedWatcherTests) ... Warning -- threading_cleanup() failed to cleanup 1 threads (count: 1, dangling: 2) ``` The following implementation details for the new method are TBD: 1) Public vs private 2) Inclusion in `close()` 3) Name 4) Coroutine vs subroutine method 5) *timeout* parameter If it's a private method, 3, 4, and 5 are significantly less important. I started with the most minimal implementation that fixes the dangling threads without modifying the regression tests, which I think is particularly important. I typically try to avoid directly modifying existing tests as much as possible unless it's necessary to do so. However, I am open to changing any part of this. https://bugs.python.org/issue38356 (cherry picked from commit 0ca7cc7fc0518c24dc9b78c38418e6064e64f148) Co-authored-by: Kyle Stanley <aeros167@gmail.com> 12 January 2020, 11:21:00 UTC
a240f05 bpo-39233: Update positional-only section in the glossary (GH-17874) https://bugs.python.org/issue39233 (cherry picked from commit 9a669d58e8cb586fba38c84d5b631cd8a95d0c0c) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 12 January 2020, 11:03:15 UTC
98b1c0c bpo-39297: Update for importlib_metadata 1.4. (GH-17947) (GH-17952) * bpo-39297: Update for importlib_metadata 1.4. Includes performance updates. * 📜🤖 Added by blurb_it. * Update blurb Co-authored-by: blurb-it[bot] <43283697+blurb-it[bot]@users.noreply.github.com> (cherry picked from commit 136735c1a2efb320e4cbb64b40f1191228745b39) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> 11 January 2020, 15:56:57 UTC
0f40482 Fix host in address of socket.create_server example. (GH-17706) Host as None in address raises TypeError since it should be string, bytes or bytearray. (cherry picked from commit 43682f1e39a3c61f0e8a638b887bcdcbfef766c5) Co-authored-by: Karthikeyan Singaravelan <tir.karthi@gmail.com> 11 January 2020, 05:39:01 UTC
df2fb60 [3.8] Add test cases for dataclasses. (GH-17909) (GH-17919) * Add test cases for dataclasses. * Add test for repr output of field. * Add test for ValueError to be raised when both default and default_factory are passed. (cherry picked from commit eef1b027ab70704bcaa60a089e4ae1592c504b86) Co-authored-by: Karthikeyan Singaravelan <tir.karthi@gmail.com> Automerge-Triggered-By: @ericvsmith 10 January 2020, 12:12:08 UTC
33e033d bpo-39235: Fix end location for genexp in call args (GH-17925) The fix changes copy_location() to require an extra node from which to extract the end location, and fixing all 5 call sites. https://bugs.python.org/issue39235 (cherry picked from commit a796d8ef9dd1af65f7e4d7a857b56f35b7cb6e78) Co-authored-by: Guido van Rossum <guido@python.org> 09 January 2020, 19:39:00 UTC
e47a7e3 Fix typo in test's docstring (GH-17856) (GH-17923) * Fix typo in test's docstring. contination -> continuation. (cherry picked from commit 2f65aa465865930f8364645b1466d2751c4086d3) Co-authored-by: Daniel Hahler <git@thequod.de> Co-authored-by: Daniel Hahler <github@thequod.de> 09 January 2020, 17:33:05 UTC
8c08518 bpo-25172: Reduce scope of crypt import tests (GH-17881) (cherry picked from commit ed367815eeb9329c48a86a8a7fa3186e27a10f2c) Co-authored-by: Steve Dower <steve.dower@python.org> 09 January 2020, 17:19:59 UTC
20c9902 bpo-39161: Document multi-phase init modules under Py_NewInterpreter() (GH-17896) \+ this also adds a stronger warning against sharing objects between (sub-)interpreters. https://bugs.python.org/issue39161 (cherry picked from commit 6c5d661342d12f6836580b0e75e3569c764527ae) Co-authored-by: Petr Viktorin <encukou@gmail.com> 09 January 2020, 12:27:35 UTC
45e5750 closes bpo-39262: Use specific out-of-memory message in _sharedexception_bind. (GH-17908) (cherry picked from commit 5cae042f686cc174e00093944dc118914c874b7c) Co-authored-by: Alex Henrie <alexhenrie24@gmail.com> 09 January 2020, 03:07:38 UTC
b24e4fa bpo-39242: Updated the Gmane domain into news.gmane.io (GH-17903) (cherry picked from commit 2e6a8efa837410327b593dc83c57492253b1201e) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> 08 January 2020, 15:48:33 UTC
39a5c88 bpo-38871: Fix lib2to3 for filter-based statements that contain lambda (GH-17780) Correctly parenthesize filter-based statements that contain lambda expressions in lib2to3. (cherry picked from commit b821173b5458d137c8d5edb6e9b4997aac800a38) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> 07 January 2020, 17:52:06 UTC
bff48c6 bpo-39198: Ensure logging global lock is released on exception in isEnabledFor (GH-17689) (GH-17897) (cherry picked from commit 950c6795aa0ffa85e103a13e7a04e08cb34c66ad) 07 January 2020, 17:03:23 UTC
4112a3d [3.8] bpo-39191: Fix RuntimeWarning in asyncio test (GH-17863) (#17894) https://bugs.python.org/issue39191. (cherry picked from commit 10ac0cded26d91c3468e5e5a87cecad7fc0bcebd) Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> 07 January 2020, 14:55:19 UTC
a6b3758 bpo-38623: Doc: Add section for site module CLI. (GH-17858) (cherry picked from commit ca94677a6216e2d41b04574986ce49d31a0b329c) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 07 January 2020, 08:04:43 UTC
6a8284d Doc: Change Python 2 status to EOL. (GH-17885) (cherry picked from commit f4800b8ed3dbe15a0078869a836d968ab3362b8c) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 07 January 2020, 06:59:28 UTC
fb59f5f bpo-39041: Fix coverage upload command for GitHub Actions (GH-17873) https://bugs.python.org/issue39041 Automerge-Triggered-By: @zooba (cherry picked from commit b1ce22d086660d2505010694c8813cc67adf8f9e) Co-authored-by: Steve Dower <steve.dower@python.org> 06 January 2020, 21:41:33 UTC
a9a43c2 bpo-29778: Fix incorrect NULL check in _PyPathConfig_InitDLLPath() (GH-17818) (cherry picked from commit 7b79dc9200a19ecbac667111dffd58e314be02a8) Co-authored-by: Anthony Wee <awee@box.com> 06 January 2020, 17:17:36 UTC
0048833 bpo-39041: Add GitHub Actions support (GH-17594) (cherry picked from commit a76ba362c4d86adf5e7f8254398135d12d7afd25) Co-authored-by: Steve Dower <steve.dower@python.org> 06 January 2020, 16:46:55 UTC
b2e281a bpo-39209: Manage correctly multi-line tokens in interactive mode (GH-17860) (cherry picked from commit 5ec91f78d59d9c39b984f284e00cd04b96ddb5db) Co-authored-by: Pablo Galindo <Pablogsal@gmail.com> 06 January 2020, 16:26:13 UTC
33cb4a6 bpo-38907: Suppress any exception when attempting to set V6ONLY. (GH-17864) (GH-17865) Fixes error attempting to bind to IPv4 address. (cherry picked from commit 7cdc31a14c824000cbe8b487900c9826a33f6940) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> 06 January 2020, 13:28:27 UTC
5ed9d60 bpo-38907: In http.server script, restore binding to IPv4 on Windows. (GH-17851) (#17854) (cherry picked from commit ee94bdb0598f9bc47d6a49e58fffc97aa617be96) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> 06 January 2020, 12:34:10 UTC
5a065ac Minor formatting improvements and fixes to idle.rst (GH-17165) (cherry picked from commit d6c08db8538d046d783db44fe4e70a60af0fb02e) Co-authored-by: Tal Einat <taleinat+github@gmail.com> 06 January 2020, 00:09:56 UTC
8994788 bpo-39130: Dict reversed was added in v3.8 so should say in the doc as well (GH-17694) To be consistent with document layout, it should say when the feature was added. Although it's mentioned few other places in the doc but it's not explicitly say that at that place. https://bugs.python.org/issue39130 (cherry picked from commit 94d9cfc4ed9dd3c4a3a359bc194b4dc3f6ba63eb) Co-authored-by: Khalid Mammadov <khalidmammadov9@gmail.com> 05 January 2020, 22:45:35 UTC
cfeacf2 Fix the parameter list of object. _rpow_ (GH-GH-16477) (cherry picked from commit abc0c4fa9970931849b3da598c5980a5b170661e) Co-authored-by: HongWeipeng <961365124@qq.com> 05 January 2020, 22:37:44 UTC
183fbd1 Replace links in howto/pyporting.rst with sphinx references (GH-17781) Signed-off-by: Oleg Höfling <oleg.hoefling@gmail.com> (cherry picked from commit e6ae90dede07e8599cc6906417ca4aa99d8aa6e4) Co-authored-by: Oleg Höfling <hoefling@users.noreply.github.com> 05 January 2020, 22:13:57 UTC
49c108c Fix constant folding optimization for positional only arguments (GH-17837) (cherry picked from commit b121a4a45ff4bab8812a9b26ceffe5ad642f5d5a) Co-authored-by: Anthony Sottile <asottile@umich.edu> 05 January 2020, 17:21:47 UTC
636a850 bpo-39152: add missing ttk.Scale.configure return value (GH-17815) tkinter.ttk.Scale().configure([name]) now returns a configuration tuple for name or a list thereof for all options. Based on patch Giovanni Lombardo. (cherry picked from commit 5ea7bb25e3b192d6c49a49c9e3b316f8559602aa) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 05 January 2020, 17:07:30 UTC
34aa3e7 bpo-39055: Reject a trailing \n in base64.b64decode() with validate=True. (GH-17616) (cherry picked from commit b19c0d77e6f25ea831ab608c71f15d0d9266c8c4) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 05 January 2020, 12:36:48 UTC
e1caa49 bpo-39056: Fix handling invalid warning category in the -W option. (GH-17618) No longer import the re module if it is not needed. (cherry picked from commit 41ec17e45d54473d32f543396293256f1581e44d) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 05 January 2020, 12:33:08 UTC
fc84d50 bpo-39057: Fix urllib.request.proxy_bypass_environment(). (GH-17619) Ignore leading dots and no longer ignore a trailing newline. (cherry picked from commit 6a265f0d0c0a4b3b8fecf4275d49187a384167f4) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 05 January 2020, 12:32:00 UTC
8595255 Fix SystemError when nested function has annotation on positional-only argument (GH-17826) (cherry picked from commit ec007cb43faf5f33d06efbc28152c7fdcb2edb9c) Co-authored-by: Anthony Sottile <asottile@umich.edu> 05 January 2020, 02:14:58 UTC
867d833 [3.8] bpo-39191: Don't spawn a task before failing (GH-17796) (GH-17820) (cherry picked from commit 3a5de511596f17575de082dcb8d43d63b2bd2da9) Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> 04 January 2020, 09:49:11 UTC
aa3efea bpo-38532: Add missing decrefs in PyCFuncPtr_FromDll() (GH-17811) (cherry picked from commit e02ab59fdffa0bb841182c30ef1355c89578d945) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 03 January 2020, 12:50:11 UTC
526f0b3 Update copyright year in macOS installer license copy (GH-17806) (cherry picked from commit 32f1443aa98db769d87db497b45bd0dcb732445b) Co-authored-by: Ned Deily <nad@python.org> 03 January 2020, 03:49:59 UTC
10dc738 Bring Python into the next decade. (GH-17801) (cherry picked from commit 946b29ea0b3b386ed05e87e60b8617c9dc19cd53) Co-authored-by: Benjamin Peterson <benjamin@python.org> 03 January 2020, 03:15:37 UTC
6bf382a bpo-39183: Fix formatting in library/ensurepip (GH-17787) Remove extra space to fix formatting and avoid from splitting text in to strings. https://bugs.python.org/issue39183 (cherry picked from commit 149175c6dfc8455023e4335575f3fe3d606729f9) Co-authored-by: Rafael Fontenelle <rffontenelle@users.noreply.github.com> 01 January 2020, 22:32:23 UTC
1d5a7e5 bpo-39142: Avoid converting namedtuple instances to ConvertingTuple. (GH-17773) (GH-17785) (cherry picked from commit 46abfc1416ff8e450999611ef8f231ff871ab133) 01 January 2020, 20:06:52 UTC
dad526e Document CodeType.replace (GH-17776) (cherry picked from commit 22424c02e51fab3b62cbe255d0b87d1b55b9a6c3) Co-authored-by: Anthony Sottile <asottile@umich.edu> 01 January 2020, 06:27:56 UTC
6c00495 bpo-39176: Improve error message for 'named assignment' (GH-17777) (GH-17778) (cherry picked from commit 37143a8e3b2e9245d52f4ddebbdd1c6121c96884) Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> Co-authored-by: Ned Batchelder <ned@nedbatchelder.com> 01 January 2020, 03:28:08 UTC
302b35f Fix idlelib README typo. (GH-17770) (cherry picked from commit ba82ee894cf0f6ec9e9f6a313c870ffd2db377e6) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 31 December 2019, 18:52:38 UTC
2ee8791 [3.8] bpo-38588: Fix possible crashes in dict and list when calling P… (GH-17764) * [3.8] bpo-38588: Fix possible crashes in dict and list when calling PyObject_RichCompareBool (GH-17734) Take strong references before calling PyObject_RichCompareBool to protect against the case where the object dies during the call. (cherry picked from commit 2d5bf568eaa5059402ccce9ba5a366986ba27c8a) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> * Update Objects/listobject.c @methane's suggestion Co-Authored-By: Inada Naoki <songofacandy@gmail.com> Co-authored-by: Inada Naoki <songofacandy@gmail.com> 31 December 2019, 04:15:36 UTC
a278ae1 closes bpo-37446: resolve undefined behavior in Python/hamt.c (GH-17727) (cherry picked from commit d0c92e81aa2171228a23cb2bed36f7dab975257d) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> 31 December 2019, 02:51:18 UTC
ec94156 bpo-34118: memoryview, range, and tuple are classes (GH-17761) Tag memoryview, range, and tuple as classes, the same as list, etcetera, in the library manual built-in functions list. (cherry picked from commit ee9ff05ec22ecd47dbffdd361967ccd55963dad2) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 30 December 2019, 22:24:27 UTC
fcaf14c bpo-38610: Fix possible crashes in several list methods (GH-17022) Hold strong references to list elements while calling PyObject_RichCompareBool(). (cherry picked from commit d9e561d23d994e3ed15f4fcbd7ee5c8fe50f190b) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 30 December 2019, 19:51:06 UTC
cbfafa3 bpo-39037: Fix lookup order of magic methods in with statement documentation (GH-17608) * __enter__ is now looked up before __exit__ to give a more intuitive error message * add pseudo-code equivalent for the with statement * fix pseudo-code for the async with statement to use a finally clause * use SUITE rather than BLOCK for consistency with the language grammar Patch by Géry Ogam. (cherry picked from commit 226e6e7d4326cf91ef37e13528eb1f62de1bb832) Co-authored-by: Géry Ogam <gery.ogam@gmail.com> 30 December 2019, 05:31:18 UTC
e06be08 Fix typos and remove deprecated deprecation warning. (GH-17741) (cherry picked from commit 32a12aed6da41f49a5ca05e6de34f5f93ea1dc33) Co-authored-by: Antoine <43954001+awecx@users.noreply.github.com> 29 December 2019, 22:20:52 UTC
df647f3 [3.8] bpo-39136: Fixed typos (GH-17720) funtion -> function; configuraton -> configuration; defintitions -> definitions; focusses -> focuses; necesarily -> necessarily; follwing -> following; Excape -> Escape, (cherry picked from commit 6c7bb38ff2799ac218e6df598b2b262f89e2bc1e) 29 December 2019, 00:05:15 UTC
9ee1b15 Reorder entries in Misc/ACKS (GH-17663) (GH-17673) 28 December 2019, 20:41:21 UTC
04c1efe bpo-38731: Fix function signature of quiet in docs (GH-17719) (cherry picked from commit 98f0f04b5016e63561d313a3446b7b58f2c12611) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> 28 December 2019, 02:58:47 UTC
2786fde bpo-39144 Align ctags and etags behaviours in the makefile and include Python stdlib files (GH-17721) (cherry picked from commit ef7eaafc9d2e370cf79b3674e56f643bbfe239e2) Co-authored-by: Anthony Shaw <anthony.p.shaw@gmail.com> 28 December 2019, 02:50:34 UTC
5dd1909 closes bpo-30364: Replace deprecated no_address_safety_analysis attribute. (GH-17702) (cherry picked from commit c0052f3fe3d19820b2d4f76e383035439affe32c) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> 27 December 2019, 03:10:52 UTC
b9b92d3 [3.8] closes bpo-39135: Remove 'time.clock()' mention in docs. (GH-17713) `time.clock()` was removed in Python 3.8, but it was still mentioned in the documentation for when `time.get_clock_info()` is given the argument `'clock'`. This commit removes that mention. (cherry picked from commit 91874bb07161bb481b6f5ea18ffafe69cb8cac30) Co-authored-by: Michael Wayne Goodman <goodman.m.w@gmail.com> 27 December 2019, 03:07:21 UTC
a5deabd bpo-33961: Adjusted dataclasses docs to correct exceptions raised. (GH-7917) (GH-17677) (cherry picked from commit e28aff54d95236ea1b64b648d89a1516e446e621) Co-authored-by: Fabio Sangiovanni <4040184+sanjioh@users.noreply.github.com> 25 December 2019, 22:51:22 UTC
ff67612 Fix the miscellaneous typo (GH-17700) A character "i" is omitted. (cherry picked from commit 527f9de6efdcf09983d0764be0b978ddc1fd1653) Co-authored-by: cocoatomo <cocoatomo77@gmail.com> 25 December 2019, 15:45:52 UTC
8c0f001 bpo-38753: AsyncMock added in version 3.8 (GH-17102) (cherry picked from commit 279d8df5e5e8bbd4429420649359f7afcb4c8cce) Co-authored-by: John Belmonte <john@neggie.net> 25 December 2019, 04:42:24 UTC
e9039f3 Minor C API documentation improvements. (GH-17697) The added parentheses around the PyIter_Next assignment suppress the following warning which gcc throws without: ``` warning: using the result of an assignment as a condition without parentheses [-Wparentheses] ``` The other change is a typo fix (cherry picked from commit 5c7ed7550ec2da16d7679e538fcd7c1a5631811f) Co-authored-by: William Ayd <william.ayd@icloud.com> 25 December 2019, 04:35:01 UTC
4ed79b7 Fix import path for asyncio.TimeoutError (GH-17691) (cherry picked from commit 025eeaa19607b2a80c979668dad405f567444573) Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com> 24 December 2019, 11:04:12 UTC
0846e5d [3.8] bpo-38878: Fix os.PathLike __subclasshook__ (GH-17336) (GH-17684) https://bugs.python.org/issue38878 23 December 2019, 18:31:00 UTC
7eb8c6d Doc typo (GH-17667) (#17668) (cherry picked from commit b0d4949f1fb04f83691e10a5453d1e10e4598bb9) Co-authored-by: Jesús Cea <jcea@jcea.es> Co-authored-by: Jesús Cea <jcea@jcea.es> 23 December 2019, 15:52:29 UTC
a542aec [typo] fix dupe in datetime.fromisoformat docs (GH-17295) Fixes a nearly word for word duplication of a sentence that appears earlier in the caution section of datetime.datetime.fromisoformat in Doc/Library/datetime.rst. No issue created as it's a trivial change. Automerge-Triggered-By: @pganssle (cherry picked from commit e7b406f4e20e248d24079f97d7c8b93e5a45249e) Co-authored-by: Michael Morehouse <640167+yawpitch@users.noreply.github.com> 23 December 2019, 14:44:04 UTC
35590c5 Add missing markup (GH-17680) "HH", "MM" and "ffffff" are enclosed with double back quotes, but "SS" is left being bare (cherry picked from commit 068768faf6b82478de239d7ab903dfb249ad96a4) Co-authored-by: cocoatomo <cocoatomo77@gmail.com> 22 December 2019, 17:54:33 UTC
44683bb bpo-38918: Add __module__ entry for function & method type in inspect docs table (GH-17408) Adds` __module__ ` entries for function & method types in inspect docs table. https://bugs.python.org/issue38918 (cherry picked from commit f522a6ddb67a238bab5673608111f74ec4e22205) Co-authored-by: Parth Sharma <parthsharma2@users.noreply.github.com> 20 December 2019, 19:26:39 UTC
eba61f3 [3.8] bpo-38316: Fix co_stacksize documentation (GH-16983) (GH-17661) (cherry picked from commit d587272fe3b0fcad2f23a490e76f9f82ca7d64ef) Co-authored-by: Batuhan Taşkaya <47358913+isidentical@users.noreply.github.com> https://bugs.python.org/issue38316 Automerge-Triggered-By: @vstinner 19 December 2019, 14:44:27 UTC
f89c865 Post 3.8.1 19 December 2019, 08:01:48 UTC
114aad7 Merge tag 'v3.8.1' into 3.8 Python 3.8.1 19 December 2019, 08:00:46 UTC
b0eb046 bpo-38546: Fix concurrent.futures test_ressources_gced_in_workers() (GH-17652) (GH-17655) Fix test_ressources_gced_in_workers() of test_concurrent_futures: explicitly stop the manager to prevent leaking a child process running in the background after the test completes. (cherry picked from commit 673c39331f844a80c465efd7cff88ac55c432bfb) 18 December 2019, 20:30:43 UTC
1b293b6 Python 3.8.1 18 December 2019, 17:21:23 UTC
35acb35 bpo-38546: multiprocessing tests stop the resource tracker (GH-17641) (GH-17647) Multiprocessing and concurrent.futures tests now stop the resource tracker process when tests complete. Add ResourceTracker._stop() method to multiprocessing.resource_tracker. Add _cleanup_tests() helper function to multiprocessing.util: share code between multiprocessing and concurrent.futures tests. (cherry picked from commit 9707e8e22d80ca97bf7a9812816701cecde6d226) 18 December 2019, 09:11:05 UTC
b1f2044 [3.8] bpo-39080: Starred Expression's column offset fix when inside a CALL (GH-17645) (GH-17649) … Co-Authored-By: Pablo Galindo <Pablogsal@gmail.com> (cherry picked from commit 50d4f12958bf806a4e1a1021d70cfd5d448c5cba) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> https://bugs.python.org/issue39080 18 December 2019, 01:41:58 UTC
bf3aa10 bpo-38295: prevent test_relative_path of test_py_compile failure on macOS Catalina (GH-17636) 17 December 2019, 09:05:41 UTC
d21ad67 Fix warnings in test_asyncio.test_base_events (GH-17577) (GH-17579) Co-authored-by: tirkarthi (cherry picked from commit 1988344a6bff253f017e053f69318ecf03587294) Co-authored-by: Kyle Stanley <aeros167@gmail.com> 17 December 2019, 04:11:11 UTC
a96e938 [3.8] Add whatsnew for removal of asyncio.loop.create_datagram_endpoint()'s *reuse_address* parameter (GH-17595). (#17630) (cherry picked from commit f501db2b93a9d3d840b6fb38d6bdda8bcc400d4a) Co-authored-by: Kyle Stanley <aeros167@gmail.com> 17 December 2019, 04:01:19 UTC
8d0f369 bpo-38811: Check for presence of os.link method in pathlib (GH-17225) Commit 6b5b013bcc22 ("bpo-26978: Implement pathlib.Path.link_to (Using os.link) (GH-12990)") introduced a new link_to method in pathlib. However, this makes pathlib crash when the 'os' module is missing a 'link' method. Fix this by checking for the presence of the 'link' method on pathlib module import, and if it's not present, turn it into a runtime error like those emitted when there is no lchmod() or symlink(). Signed-off-by: Toke Høiland-Jørgensen <toke@redhat.com> (cherry picked from commit 092435e932dee1802784ec28f39454f50fdd879a) Co-authored-by: Toke Høiland-Jørgensen <toke@redhat.com> 16 December 2019, 12:42:20 UTC
cd968de The comment in ast_for_namedexpr shouldn't include if_stmt (GH-17586) Automerge-Triggered-By: @gvanrossum (cherry picked from commit b08d3f71beab59653edfbbcf7b92a7bc8050d6b8) Co-authored-by: Guido van Rossum <guido@python.org> 15 December 2019, 20:04:07 UTC
5c5d8f6 bpo-39035: travis: Don't use beta group (GH-17603) 14 December 2019, 14:01:54 UTC
ce333cd Fix elif start column offset when there is an else following (GH-17596) (GH-17600) (cherry picked from commit 5936a4ce914d42af97b9238e5090dedc8d5b0bd2) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> 14 December 2019, 10:43:42 UTC
4a5db78 Add PYTHONUTF8 to commandline usage. (GH-17587) Co-Authored-By: Victor Stinner <vstinner@python.org> (cherry picked from commit 95826c773a9004fc5b3c89de55f800504685ab21) Co-authored-by: Inada Naoki <songofacandy@gmail.com> 14 December 2019, 10:38:35 UTC
aa74a53 bpo-36406: Handle namespace packages in doctest (GH-12520) (GH-17591) (cherry picked from commit 8289e27393395ee903bd096d42e07c112d7f15c6) Co-authored-by: Xtreak <tir.karthi@gmail.com> 13 December 2019, 23:30:41 UTC
3b18b17 bpo-39031: Include elif keyword when producing lineno/col-offset info for if_stmt (GH-17582) (GH-17589) When parsing an "elif" node, lineno and col_offset of the node now point to the "elif" keyword and not to its condition, making it consistent with the "if" node. https://bugs.python.org/issue39031 Automerge-Triggered-By: @pablogsal (cherry picked from commit 025a602af7ee284d8db6955c26016f3f27d35536) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> 13 December 2019, 16:21:54 UTC
b738237 bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 (GH-17568) (GH-17569) * bpo-39022, bpo-38594: Sync with importlib_metadata 1.3 including improved docs for custom finders and better serialization support in EntryPoints. * 📜🤖 Added by blurb_it. * Correct module reference (cherry picked from commit b7a0109cd2bafaa21a4d50aad307e901c68f9156) Co-authored-by: Jason R. Coombs <jaraco@jaraco.com> 11 December 2019, 01:47:06 UTC
00e2fe4 bpo-39012: Fix RC version suffix for nuget release files (GH-17564) (cherry picked from commit d0802d07d2c864b95480a9b24c7cc050e19189d5) Co-authored-by: Steve Dower <steve.dower@python.org> 10 December 2019, 23:40:02 UTC
3ac65a7 [3.8] Minor fixes to the NEWS entries (GH-17557) Automerge-Triggered-By: @pablogsal 10 December 2019, 16:11:33 UTC
7c543f4 Post 3.8.1rc1 10 December 2019, 08:13:16 UTC
8129e5e Merge tag 'v3.8.1rc1' into 3.8 Python 3.8.1rc1 10 December 2019, 08:12:15 UTC
4ce626e Fix Windows release builds (GH-17550) (cherry picked from commit abdeb57a212556b4cd3568cca7d316d71a5b8cf0) Co-authored-by: Steve Dower <steve.dower@python.org> 10 December 2019, 05:28:10 UTC
back to top