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

sort by:
Revision Author Date Message Commit Date
4d4d23d bpo-34381: refer to 'Running & Writing Tests' in README.rst (GH-8797) (cherry picked from commit cae8ff93a696aa7d74562a9eeaf27afac1f181b4) Co-authored-by: Michael Osipov <1983-01-06@gmx.net> 17 August 2018, 21:51:48 UTC
02c4d4b bpo-34418: Fix HTTPErrorProcessor documentation (GH-8793) The http_response() and https_response() methods of the HTTPErrorProcessor class have two required parameters, 'request' and 'response'. (cherry picked from commit c53aaec793e018edef4e72a3edbd338b10db10aa) Co-authored-by: Sebastian Rittau <srittau@rittau.org> 17 August 2018, 10:35:52 UTC
cabe916 [3.6] bpo-34391: Fix ftplib test for TLS 1.3 (GH-8787) (#8790) Read from data socket to avoid "[SSL] shutdown while in init" exception during shutdown of the dummy server. Signed-off-by: Christian Heimes <christian@python.org> <!-- issue-number: [bpo-34391](https://www.bugs.python.org/issue34391) --> https://bugs.python.org/issue34391 <!-- /issue-number --> (cherry picked from commit 1590c393360df059160145e7475754427bfc6680) Co-authored-by: Christian Heimes <christian@python.org> 16 August 2018, 19:38:03 UTC
b14ab44 bpo-34395: Fix memory leaks caused by incautious usage of PyMem_Resize(). (GH-8756) (cherry picked from commit 67b9cc8e6072a919d2ed7e7ecc8124c8acfb3733) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com> 16 August 2018, 04:57:03 UTC
eeca87c bpo-34405: Updated to OpenSSL 1.0.2p for Windows builds. (GH-8776) 15 August 2018, 20:29:39 UTC
5e9551b [3.6] bpo-34399: 2048 bits RSA keys and DH params (GH-8762) (GH-8764) Downstream vendors have started to deprecate weak keys. Update all RSA keys and DH params to use at least 2048 bits. Finite field DH param file use RFC 7919 values, generated with certtool --get-dh-params --sec-param=high Signed-off-by: Christian Heimes <christian@python.org>. (cherry picked from commit 88bfd0bce05043f658e50addd21366f317995e35) Co-authored-by: Christian Heimes <christian@python.org> 15 August 2018, 07:24:50 UTC
981aa46 closes bpo-34400: Fix undefined behavior in parsetok(). (GH-4439) Avoid undefined pointer arithmetic with NULL. (cherry picked from commit 7c4ab2afb17b99eb3f61f9c73cbd548b5e0ad2c0) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 15 August 2018, 07:08:29 UTC
3e630c5 bpo-33570: TLS 1.3 ciphers for OpenSSL 1.1.1 (GH-6976) (GH-8760) Change TLS 1.3 cipher suite settings for compatibility with OpenSSL 1.1.1-pre6 and newer. OpenSSL 1.1.1 will have TLS 1.3 cipers enabled by default. Also update multissltests to test with latest OpenSSL. Signed-off-by: Christian Heimes <christian@python.org> 15 August 2018, 07:07:28 UTC
2a4ee8a bpo-32947: Fixes for TLS 1.3 and OpenSSL 1.1.1 (GH-8761) Backport of TLS 1.3 related fixes from 3.7. Misc fixes and workarounds for compatibility with OpenSSL 1.1.1 from git master and TLS 1.3 support. With OpenSSL 1.1.1, Python negotiates TLS 1.3 by default. Some test cases only apply to TLS 1.2. OpenSSL 1.1.1 has added a new option OP_ENABLE_MIDDLEBOX_COMPAT for TLS 1.3. The feature is enabled by default for maximum compatibility with broken middle boxes. Users should be able to disable the hack and CPython's test suite needs it to verify default options Signed-off-by: Christian Heimes <christian@python.org> 14 August 2018, 14:56:32 UTC
4ee06b3 smtplib documentation fixes (GH-8708) * SMTP.startssl: Fix doc on keyfile and certfile use * SMTP.startssl: Add missing keyfile and certfile deprecation notice * SMTP: Doc grammar fixes (cherry picked from commit da12063f2f53b7d272824863ed24260cefb22e8c) Co-authored-by: Ville Skyttä <ville.skytta@iki.fi> 13 August 2018, 03:51:02 UTC
4cd33cd Fix misindented yaml in logging how to example (GH-8604) (cherry picked from commit 10b59f1b019cd00c940dd7f4a74c4f667a20f25f) Co-authored-by: Rémy HUBSCHER <hubscher.remy@gmail.com> 13 August 2018, 00:06:30 UTC
72f5189 Fix the versionadded indentation in exec_module doc (GH-8719) (cherry picked from commit 65b5ef02ec1f44e3a19b689a1ecf73d01c82161b) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 12 August 2018, 07:04:09 UTC
fe62d36 closes bpo-34377: Update Valgrind suppressions. (GH-8734) Valgrind isn't seeing PyObject_Free/PyObject_Realloc, but using _PyObject_Free/_PyObject_Realloc works. (cherry picked from commit db6075ab3aa44f69c13c4a169806d08596d25003) Co-authored-by: Paul Price <price@astro.princeton.edu> 11 August 2018, 21:07:52 UTC
eb6ed12 bpo-34379: Doc: Move note for json.dump (GH-8730) (cherry picked from commit 9e840848510d20e644a19c723b803877377d3765) Co-authored-by: Evan Allrich <eallrich@gmail.com> 11 August 2018, 09:13:04 UTC
ca4badb bpo-34047: IDLE: fix mousewheel scrolling direction on macOS (GH-8678) (cherry picked from commit 077059e0f086cf8c8b7fb9d1f053e38ddc743f59) Co-authored-by: Tal Einat <taleinat+github@gmail.com> 10 August 2018, 06:58:56 UTC
af56c68 Improve grammar of asynchronous iterator glossary entry (GH-8657) (cherry picked from commit cf2c5e8e2867e41d34079b2e464bbbe653fb7981) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 09 August 2018, 16:20:58 UTC
0ee2a29 bpo-34324: Doc README wrong directory name for venv (GH-8650) In the documentation, the `env` directory is specified when we execute the `make venv` command. But in the code, `make venv` will create the virtualenv inside the `venv` directory (defined by `VENVDIR`) (cherry picked from commit 599bfa18f8ebcb23af300b6855934048c3c64e7d) Co-authored-by: Stéphane Wirtel <stephane@wirtel.be> 09 August 2018, 15:17:10 UTC
f2bb20e Make code examples in Functional Programming HOWTO to be PEP 8 compliant. (GH-8646) (cherry picked from commit db8707c8ab57d9454c838586c08199c82a3d74d9) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com> 07 August 2018, 23:01:24 UTC
6fc46a3 VSTS: Skip build steps when only docs have changed (GH-8546) 07 August 2018, 15:43:29 UTC
671a13a bpo-18540: Fix EAI_NONAME in imaplib.IMAP4*() (GH-8634) (cherry picked from commit e4dcbbd7f4ac18d01c0ec85f64ae98b8281ed403) Co-authored-by: Berker Peksag <berker.peksag@gmail.com> 07 August 2018, 02:38:05 UTC
b0bf51b bpo-31047: Fix ntpath.abspath for invalid paths (GH-8544) 07 August 2018, 00:08:39 UTC
3da5c5c bpo-34319: Clarify file handler closure in pathlib.read_text (GH-8645) Patch by Terry Jan Reedy. (cherry picked from commit 5b2657fb8c5aaa98e5748e1c325c74b97ea12fd1) Co-authored-by: Xtreak <tirkarthi@users.noreply.github.com> 06 August 2018, 20:04:30 UTC
278d975 [3.6] bpo-34272: Move argument parsing tests from test_capi to test_getargs2. (GH-8567). (GH-8690) (cherry picked from commit 8f7bb100d0fa7fb2714f3953b5b627878277c7c6) 06 August 2018, 14:34:46 UTC
ed8dd59 bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. (GH-8673) * bpo-34273: Change 'Fixed point' to 'Fixed-point notation'. The change in the mini language floating point and decimal table is consistent with 'Exponential notation' and clarifies that we are referring to the output notation, not an object type. * Update string.rst * Update string.rst * Update string.rst * Update string.rst (cherry picked from commit 28c7f8c8ce34a0cb848822a252a9d0a761fb42d5) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 06 August 2018, 12:49:34 UTC
e20d31c bpo-19891: Ignore error while writing history file (GH-8483) (cherry picked from commit b2499669ef2e6dc9a2cdb49b4dc498e078167e26) Co-authored-by: Anthony Sottile <asottile@umich.edu> 06 August 2018, 09:15:42 UTC
02c4eae bpo-34336: Don't promote possibility to leave out typing.Optional (GH-8677) (cherry picked from commit 336c945858055059a65134d4c501a85037d70d99) Co-authored-by: Ville Skyttä <ville.skytta@iki.fi> 05 August 2018, 17:22:47 UTC
2474cef bpo-33839: refactor IDLE's tooltips & calltips, add docstrings and tests (GH-7683) * make CallTip and ToolTip sub-classes of a common abstract base class * remove ListboxToolTip (unused and ugly) * greatly increase test coverage * tested on Windows, Linux and macOS (cherry picked from commit 87e59ac11ee074b0dc1bc864c74fac0660b27f6e) Co-authored-by: Tal Einat <taleinat+github@gmail.com> 05 August 2018, 06:58:06 UTC
c018074 Fix reST markup in unittest documentation (GH-8665) (cherry picked from commit 2e5566d9e774dcde81e8139b486730917816e045) Co-authored-by: Berker Peksag <berker.peksag@gmail.com> 03 August 2018, 22:17:15 UTC
764f9d0 bpo-34329: Doc'd how to remove suffix of pathlib.Path() (GH-8655) (cherry picked from commit 46dc4e34ed8005a688d7f3512844ef227a3465f4) Co-authored-by: Stefan Otte <stefan.otte@gmail.com> 03 August 2018, 21:45:20 UTC
f0e3da8 bpo-30317: Fix multiprocessing test_timeout() (GH-8621) Multiprocessing test_timeout() now accepts a delta of 100 ms instead of just 50 ms, since the test failed with 135.8 ms instead of the expected 200 ms. (cherry picked from commit 5640d030e100aade54210034828b711c3b506b18) Co-authored-by: Victor Stinner <vstinner@redhat.com> 03 August 2018, 21:00:53 UTC
aae872e Fix docstring of Profiler class (GH-8651) (cherry picked from commit 2ebd3813af9172fe1f9b2f6004edf6f1e1e5d9f1) Co-authored-by: INADA Naoki <methane@users.noreply.github.com> 03 August 2018, 10:18:45 UTC
7244954 Improve the grammar in `range` documentation. (GH-8628) Remove unnecessary "that" in the sentence. (cherry picked from commit b6efc2cf9701adfb901eec2fe6a418893739877a) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 03 August 2018, 06:16:29 UTC
363105e bpo-34275: Make IDLE calltips always visible on Mac. (GH-8639) Some MacOS-tk combinations need .update_idletasks(). The call is both unneeded and innocuous on Linux and Windows. Patch by Kevin Waltzer. (cherry picked from commit 9beaef6225cdae972b1cccd5310828cc29bf9d33) Co-authored-by: Terry Jan Reedy <tjreedy@udel.edu> 03 August 2018, 03:33:47 UTC
295342a bpo-27910: Update documentation of traceback module (GH-6116) In the documentation for the traceback module, the definitions of functions extract_tb(), format_list() and classmethod StackSummary.from_list() mention the old style 4-tuples that these functions used to return or accept. Since Python 3.5, however, they return or accept a FrameSummary object instead of a 4-tuple, or a StackSummary object instead of a list of 4-tuples. Co-authored-by: torsava <torsava@redhat.com> Co-Authored-By: Berker Peksag <berker.peksag@gmail.com> (cherry picked from commit f394ee5eaf6d6d8f45e0478e77d4dbff25c6bea7) 02 August 2018, 17:00:57 UTC
8c4a005 bpo-34120: fix text viewer to call grab_release() only when needed (GH-8616) (cherry picked from commit dd74369cb7b230b07ac3a031563406c8f2aae17f) Co-authored-by: Tal Einat <taleinat+github@gmail.com> 02 August 2018, 08:31:14 UTC
9fcfb7b bpo-34120: fix IDLE freezing after closing dialogs (GH-8603) Added missing .grab_release() calls to all places where we call .grab_set(). (cherry picked from commit 10ea9409ceb5da83cb380b610750551e26561044) Co-authored-by: Tal Einat <taleinat+github@gmail.com> 02 August 2018, 07:14:24 UTC
6f16ffc [3.6] bpo-34263 Cap timeout submitted to epoll/select etc. to one day. (GH-8532) (GH-8587) 31 July 2018, 15:28:56 UTC
ada5d99 [3.6] bpo-33871: Fix os.sendfile(), os.writev(), os.readv(), etc. (GH-7931) (GH-8584) * Fix integer overflow in os.readv(), os.writev() and in os.sendfile() with headers or trailers arguments (on BSD-based OSes and MacOS). * Fix sending the part of the file in os.sendfile() on MacOS. Using the trailers argument could cause sending more bytes from the input file than was specified. Thanks Ned Deily for testing on 32-bit MacOS. (cherry picked from commit 9d5727326af53ddd91016d98e16ae7cf829caa95) 31 July 2018, 09:58:58 UTC
0b376eb bpo-27671: Update FAQ about why len is function (GH-8432) (cherry picked from commit c48e26dcadbff8620bb5881d3bd148fc8894d0ef) Co-authored-by: INADA Naoki <methane@users.noreply.github.com> 31 July 2018, 05:56:27 UTC
a7bd4bb Use 'for example' instead of 'in other words' in compound statement doc (GH-8401) (cherry picked from commit 6921ef7bef4eab3819b3d0fda5fa3e3b2a8c0613) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 30 July 2018, 19:47:24 UTC
15bbae7 Fix typos & formatting in Using Python on Windows doc (GH-8559) (cherry picked from commit 8e7e8bd8984068e3245d64b9a21e6840880747af) Co-authored-by: Segev Finer <segev208@gmail.com> 30 July 2018, 17:20:31 UTC
05a10b6 Updated MSI README to mention dependency on .NET 3.5. (GH-8375) (cherry picked from commit c536beedd50b0071208b4108ba9b48a36ffced79) Co-authored-by: Vinay Sajip <vinay_sajip@yahoo.co.uk> 29 July 2018, 10:25:09 UTC
28bbbda bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. (GH-7911) Co-authored-by: ValeriyaSinevich <valeriya.sinevich@phystech.edu> 29 July 2018, 09:32:30 UTC
94972d5 bpo-8145: Improve isolation_level documentation (GH-8499) Initial patch by R. David Murray. (cherry picked from commit a71fed0b7596f1c11a2fa6c1b7311157148f5f9f) Co-authored-by: Berker Peksag <berker.peksag@gmail.com> 29 July 2018, 09:07:40 UTC
8f6a7e1 bpo-34225: Ensure INCLUDE and LIB directories do not end with a backslash. (GH-8464) (cherry picked from commit 5473f061f518aef5367a535999a407305fb12aff) Co-authored-by: Steve Dower <steve.dower@microsoft.com> 29 July 2018, 09:02:16 UTC
3100b7e bpo-29710: Clarify documentation for Bitwise binary operation (GH-1691) Mathematically, bitwise operations on integers behave as if there were an infinite number of sign bits. Pragmatically, that gives the same answer as using one extra sign bit for the bitwise logical operations. (cherry picked from commit b4bc5cab82e6855e4ebc33ba0b669ddffad30fb3) Co-authored-by: Sanyam Khurana <8039608+CuriousLearner@users.noreply.github.com> 28 July 2018, 16:52:31 UTC
f17e001 bpo-33476: Fix _header_value_parser when address group is missing final ';' (GH-7484) (cherry picked from commit 8fe9eed937cb69b5e26ac6e36a90b5360eb11277) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> 28 July 2018, 15:59:18 UTC
30f295b bpo-33921: Clarify how to bind to all interfaces using socket (GH-7877) Clarify how to bind to all interfaces using socket (cherry picked from commit 95dfb9c3aefdc981d23af700b753a6c97159ccad) Co-authored-by: johnthagen <johnthagen@users.noreply.github.com> 28 July 2018, 12:27:27 UTC
0041d72 [3.6] bpo-5978: Document that profiling needs cmd/function to return (GH-8515) <!-- issue-number: bpo-5978 --> https://bugs.python.org/issue5978 <!-- /issue-number --> (cherry picked from commit 937fb55d35373fd2701078251840b6be0465a6e1) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 28 July 2018, 12:24:35 UTC
9d85856 bpo-30722: Fix NEWS entry (GH-8501) 27 July 2018, 16:17:53 UTC
6ea8a3a [3.6] bpo-29097: Forego fold detection on windows for low timestamp values (GH-2385) (GH-8498) On Windows, passing a negative value to local results in an OSError because localtime_s on Windows does not support negative timestamps. Unfortunately this means that fold detection for timestamps between 0 and max_fold_seconds will result in this OSError since we subtract max_fold_seconds from the timestamp to detect a fold. However, since we know there haven't been any folds in the interval [0, max_fold_seconds) in any timezone, we can hackily just forego fold detection for this time range on Windows.. (cherry picked from commit 96d1e69a12ed8ab80203277e1abdaf573457a964) Co-authored-by: Ammar Askar <ammar_askar@hotmail.com> 27 July 2018, 14:59:27 UTC
777cdd9 bpo-34177: vsts: Avoid conflict with Homebrew Python (GH-8430) /usr/local/lib/pythonX.Y is used by Homebrew's Python already. (cherry picked from commit 3e7d18a54b9243b9652c9ddab87c2b9153dc365f) 27 July 2018, 09:03:53 UTC
146ba43 bpo-12743: Delete comment from marshal.rst (GH-8457) Also, update the list of exceptions that may raised by PyMarshal_* functions. We usually don't document exceptions raised by a function, but in this case most of them were already documented in C API and standard library documentation. (cherry picked from commit defcffdf86780e3a184ebb25dc9a7b807753d57a) Co-authored-by: Berker Peksag <berker.peksag@gmail.com> 27 July 2018, 04:42:44 UTC
cecbe0a bpo-32663 Make SMTPUTF8SimTests run (GH-5314) (#8470) Enable and fix SMTPUTF8SimTests in test_smtplib. The tests for SMTPUTF8SimTests in test_smtplib.py were not actually being run because test_smtplib was still using the 'test_main' pattern, and the class was never added to test_main. Additionally, one of the tests needed to be moved to the non-UTF8 server class because it relies on the server not being UTF-8 compatible (and it had a bug in in). (cherry picked from commit 48ed88a93bb0bbeaae9a4cfaa533e4edf13bcb51) Co-authored-by: chason <chason@gmail.com> 26 July 2018, 14:02:22 UTC
cfadd1c bpo-28677: Improve phrasing of when instance attribute is referenced (GH-6208) (cherry picked from commit c0f0a7669c73c0d444851dd4c5299de2479214cc) Co-authored-by: Aaron Ang <aaronang@users.noreply.github.com> 25 July 2018, 17:40:32 UTC
a096cc6 Fix site module documentation. (GH-8441) The script will exit with the number 0 (zero), instead of the letter O. (cherry picked from commit 95d34c2a37f4c5046f6439abef881925d34fe4ac) Co-authored-by: Mariatta <Mariatta@users.noreply.github.com> 24 July 2018, 17:31:11 UTC
113f86e [3.6] bpo-34164: Fix handling of incorrect padding in base64.b32decode(). (GH-8351) (GH-8436) Now base64.Error is always raised instead of UnboundLocalError or OverflowError. (cherry picked from commit ac0b3c2f4d86fc056b833a4e6b9a380741244a63) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 24 July 2018, 12:06:59 UTC
9b33ca0 [3.6] bpo-34136: Make test_do_not_recreate_annotations more reliable. (GH-8364) (GH-8366) (cherry picked from commit 06ca3f0c09d017b9d741553818459cca2d5da587) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 24 July 2018, 12:06:19 UTC
ec729d5 bpo-34084: Fix setting an error message for the "Barry as BDFL" easter egg. (GH-8262) (GH-8424) (cherry picked from commit aba24ff3601ddc86b85e01880a8be596fb799287) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 23 July 2018, 22:41:48 UTC
5b3643d bpo-33468: Add try-finally contextlib.contextmanager example (GH-7816) (GH-8426) (cherry picked from commit bde782bb594edffeabe978abeee2b7082ab9bc2a) Co-authored-by: Matthias Bussonnier <bussonniermatthias@gmail.com> 23 July 2018, 21:38:24 UTC
1127849 bpo-33336, imaplib: Legalize MOVE command (GH-6569) imaplib now allows MOVE command in IMAP4.uid() (RFC 6851: IMAP MOVE Extension) and potentially as a name of supported method of IMAP4 object. (cherry picked from commit caa331d492acc67d8f4edd16542cebfabbbe1e79) Co-authored-by: Matěj Cepl <mcepl@cepl.eu> 23 July 2018, 13:17:25 UTC
1724c0c bpo-25094: Fix test_tools.test_sundry() on Windows (GH-8406) When Python is installed on Windows, python -m test test_tools failed because it tried to run Tools\scripts\2to3.py which requires an argument. Skip this script. On other platforms or on Windows but when run from source code (not installed), the script is called "2to3" instead of "2to.py" and so was already skipped. Modify also the unit test to unload all modules which have been loaded by the test. (cherry picked from commit 752d4b7531093c55d6f0a5846748f981d79b29d3) Co-authored-by: Victor Stinner <vstinner@redhat.com> 23 July 2018, 12:34:20 UTC
e9e6495 bpo-940286: Fix pydoc to show cross refs correctly (GH-8390) (cherry picked from commit d04f46c59f1d07d9bcc0ba910741296ac88d370d) Co-authored-by: Berker Peksag <berker.peksag@gmail.com> 23 July 2018, 06:51:28 UTC
0ff1746 [3.6] bpo-34189: Add simple tests for new Tk widget options. (GH-8396) (GH-8399) (cherry picked from commit e271ca78e37a502b3dc1036f824aa3999efcd56b) (cherry picked from commit c75c1e0e8aeb720ac3fcfab119b70cabba4e8235) 22 July 2018, 19:14:45 UTC
9c13670 bpo-34179: Make sure decimal context doesn't affect other tests. (GH-8376) (#8384) (cherry picked from commit 938045f335b52ddb47076e9fbe4229a33b4bd9be) Co-authored-by: Bo Bayles <bbayles@gmail.com> 21 July 2018, 18:38:49 UTC
916bcc6 bpo-34166: Fix warnings in Tools/msgfmt.py. (GH-8367) (cherry picked from commit a692efe4733f98831cb51a9683877b152f754d14) Co-authored-by: Xtreak <tirkarthi@users.noreply.github.com> 21 July 2018, 07:24:41 UTC
9176962 [3.6] bpo-34162: idlelib/NEWS.txt entries to 2018-7-20 (GH-8345) (GH-8348) Cherry-picked from 2c5c0a3 20 July 2018, 06:49:15 UTC
226f064 [3.6] Enable GUI testing on Travis Linux builds via Xvfb (GH-7887) (cherry picked from commit b12112b5ba608cdd7a0962a6b18cad4fe58b46e6) 20 July 2018, 02:51:18 UTC
2fe1c6b bpo-32692: Fix test_threading.test_set_and_clear() (GH-8331) Increase the timeout: give timeout x 4 instead of timeout x 2 to threads to wait until the Event is set, but reduce the sleep from 500 ms to 250 ms. So the test should be more reliable and faster! (cherry picked from commit 81950495ba2c36056e0ce48fd37d514816c26747) Co-authored-by: Victor Stinner <vstinner@redhat.com> 19 July 2018, 09:44:29 UTC
e13180b bpo-34130: Fix test_signal.test_socket() (GH-8326) (GH-8330) test_signal.test_socket(): On Windows, sometimes even if the C signal handler succeed to write the signal number into the write end of the socketpair, the test fails with a BlockingIOError on the non-blocking read.recv(1) because the read end of the socketpair didn't receive the byte yet. Fix the race condition on Windows by setting the read end as blocking. (cherry picked from commit 99bb6df66a42625367c4f38e6802c8bb527baf4a) Co-authored-by: Victor Stinner <vstinner@redhat.com> 18 July 2018, 17:02:06 UTC
c774f76 Clarify ValueError's broad applicability (GH-8313) (GH-8317) (cherry picked from commit feabae961707b00008c15a31352e458f4e8b3a6c) Co-authored-by: Raymond Hettinger <rhettinger@users.noreply.github.com> 17 July 2018, 20:24:27 UTC
cf30d5c bpo-24618: Add a check in the code constructor. (GH-8283) (GH-8311) Check that the size of the varnames tuple is enough at least for all arguments. (cherry picked from commit bd47384e07bde38a8f18b90b4cea02a505d95c75) 17 July 2018, 07:33:55 UTC
cc13016 bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282). (GH-8312) (cherry picked from commit 28f07364f066792ceee93231dbb80ae8ad98b2bb) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 17 July 2018, 07:33:14 UTC
8b5d191 bpo-33967: Fix wrong use of assertRaises (GH-8306) (cherry picked from commit 56d8f57b83a37b05a6f2fbc3e141bbc1ba6cb3a2) Co-authored-by: INADA Naoki <methane@users.noreply.github.com> 17 July 2018, 05:38:28 UTC
f1ab9ca bpo-34124: Fix markup of message_from_binary_file() signature (GH-8297) (cherry picked from commit c9265c1534b7e62bb9b15460d0420c0c3bb57ff9) Co-authored-by: Jon Ribbens <jribbens@gmail.com> 16 July 2018, 19:41:48 UTC
336c953 bpo-33967: Remove use of deprecated assertRaisesRegexp() (GH-8261) (GH-8295) It was added in test_functools at 445f1b3. (cherry picked from commit 9e9b2c32a34594e901b5b9a03c561a2a2bf63ece) Co-authored-by: Zackery Spytz <zspytz@gmail.com> 16 July 2018, 09:26:49 UTC
8487ef6 [3.6] bpo-34121: Fix detection of C11 atomic support on clang. (GH-8290) (cherry picked from commit 15c7b2abdfb93f8902dd72474818aee2bf97fa66) Co-authored-by: Benjamin Peterson <benjamin@python.org> 16 July 2018, 00:48:46 UTC
b2f8aa0 bpo-34087: Backport tests for int/float/complex (GH-8274) Cherrypick tests from 16dfca4d829e45f36e71bf43f83226659ce49315 While the regression is not in 3.6, it's worth to backport test cases to 3.6 branch too. 14 July 2018, 07:38:14 UTC
083a836 bpo-4260: Document that ctypes.xFUNCTYPE are decorators (GH-7924) (cherry picked from commit 379e9d639a52766f79c7a206c5096c8333d1896f) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 13 July 2018, 13:54:18 UTC
8df4770 bpo-33716, test_concurrent_futures: increase timeout (GH-7828) (GH-8264) Increase the timeout from 1 min to 5 min. Replace also time.time() with time.monotonic() for timeouts. (cherry picked from commit 3ad8decd76c736f393755537aeb19b5612c21761) 12 July 2018, 09:11:29 UTC
3b06285 bpo-34080: Fix a memory leak in the compiler. (GH-8222) (GH-8257) (cherry picked from commit 993030aac576710a46b3dd0b4864f819d4a94145) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 11 July 2018, 22:05:29 UTC
ec75620 bpo-23927: Make getargs.c skipitem() skipping 'w*'. (GH-8192) (cherry picked from commit 504373c59b48f1ea12132d515459022730db6047) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 11 July 2018, 17:10:40 UTC
d68cb9d bpo-34092, test_logging: increase SMTPHandlerTest timeout (GH-8245) (GH-8249) Change test_logging.SMTPHandlerTest timeout from 8 seconds to 1 minute. The test failed randomly on the slow x86 Gentoo Refleaks 3.7 buildbot. (cherry picked from commit 31b50b8cbfbf49d5fc17c612cf0dfaa4d0c24983) 11 July 2018, 11:14:36 UTC
b3cc7ca Doc: Point to Simple statements section instead of PEP (GH-8238) (cherry picked from commit 33aefad3424853ff197c23431efec89d6598b19d) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 11 July 2018, 10:52:27 UTC
def4b06 Fix documentation for input and output tutorial (GH-8231) The ValueError message ends with a period. (cherry picked from commit 9cffdbffc3b2dec18def1c3e8cfa166d01d609df) Co-authored-by: Lysandros Nikolaou <lisandrosnik@gmail.com> 11 July 2018, 01:08:43 UTC
cb14eb7 bpo-34031: fix incorrect usage of self.fail in two tests (GH-8091) Contributed by Bradley Laney. (cherry picked from commit 6b490b5db40fc29588e8e6cc23bb89c4fed74ad5) Co-authored-by: Bradley Laney <bradley.laney@gmail.com> 10 July 2018, 10:13:06 UTC
6ceab46 bpo-33967: Fix singledispatch raised IndexError when no args (GH-8184) (cherry picked from commit 445f1b35ce8461268438c8a6b327ddc764287e05) Co-authored-by: Dong-hee Na <donghee.na92@gmail.com> 10 July 2018, 08:00:35 UTC
a2aabad [3.6] prefix internal sqlite symbols with _pysqlite_ (GH-8215). (GH-8218) (cherry picked from commit 7762e4d3872818272800dfbd8e1d8e3a689eb8f2) Co-authored-by: Benjamin Peterson <benjamin@python.org> 10 July 2018, 05:36:41 UTC
9a390b6 delete some unused pysqlite forward declarations (GH-8211) (cherry picked from commit d6d4432724b12efc0d280b8eb80bca0deb8d4323) Co-authored-by: Benjamin Peterson <benjamin@python.org> 10 July 2018, 04:02:49 UTC
eeaae26 [3.6] bpo-34066: Disabled interruption before SETUP_WITH and BEFORE_ASYNC_WITH. (GH-8159) (GH-8198) This will prevent emitting a resource warning when the execution was interrupted by Ctrl-C between calling open() and entering a 'with' block in "with open()". (cherry picked from commit 3f4d90d4d72921f16babd3f52d7df804916af224) Co-authored-by: Serhiy Storchaka <storchaka@gmail.com> 09 July 2018, 16:02:25 UTC
13d1025 Fixed several assertTrue() that were intended to be assertEqual(). (GH-8191) Fixed also testing the "always" warning filter. (cherry picked from commit b796e7dcdc24ff7ec53044af041254c83a8ace21) Co-authored-by: Sergey Fedoseev <fedoseev.sergey@gmail.com> 09 July 2018, 15:54:27 UTC
d73497b bpo-26544: Fixed implementation of platform.libc_ver(). (GH-7684). (GH-8193) (GH-8195) (cherry picked from commit 2a9b8babf0d09946ebebfdb2931cc0d3db5a1d3d) (cherry picked from commit 7c43b801503c802ed6ea4b811f5bc73791249d94) 09 July 2018, 11:38:27 UTC
336c715 Fix margin in sentinel and mock_open (GH-8188) (cherry picked from commit f85af035c5cb9a981f5e3164425f27cf73231b5f) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 09 July 2018, 00:52:44 UTC
4041565 bpo-34061: Document sqlite3.NotSupportedError (GH-8172) (cherry picked from commit bc9aa813a34474e517af8999565ff6151559d42f) Co-authored-by: Marcin Niemira <marcin@niemira.net> 08 July 2018, 13:58:49 UTC
b7874c8 bpo-33888: Use CPython instead of Python in the FAQ (GH-7767) Make the change where discussing the CPython implementation of lists and dicts. (cherry picked from commit 8d41278045ee4e8bf1cadb58a7db58d70ad55237) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 07 July 2018, 23:50:33 UTC
becb527 [3.6] closes bpo-34050: Fix link in SSL docs (GH-8173) (GH-8178) (cherry picked from commit 9c5ba097485c8c643b670acd4026f4382bc92f4b) Co-authored-by: Marcin Niemira <marcin@niemira.net> 07 July 2018, 23:03:37 UTC
445f9ed bpo-33702: Add some missing links in production lists and do a little polish (GH-7259) (cherry picked from commit caccca78e46bf3c3b24e09b3afb1c1b08c39990c) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 07 July 2018, 21:09:20 UTC
770937b bpo-33804: Document that the argument for io.TextIOBase.read() is optional (GH-7510) (cherry picked from commit b6bb77c2b8e83ba6cb845c7b512ac564276e854f) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 07 July 2018, 20:45:07 UTC
3271fba Add missing closing parentheses (GH-8144) (cherry picked from commit 03dd0e794e26afb5fa998d10ae2071e2cb0bc634) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 07 July 2018, 19:34:43 UTC
dc33d4a Fix moduleauthor/sectionauthor directives in Enum (GH-8117) (cherry picked from commit 2d748389dc9c8d083f51c7d28761e088a5468c86) Co-authored-by: Andrés Delfino <adelfino@gmail.com> 07 July 2018, 19:30:40 UTC
back to top