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

sort by:
Revision Author Date Message Commit Date
27dfbf0 Remove unused variable in test_urllibnet. (#1598) (#1599) (cherry picked from commit 1bd7d299bd2a91f8267f97a413568ab8fe7fdfbb) 16 May 2017, 15:36:38 UTC
24b5ed2 [3.5] bpo-30375: Correct the stacklevel of regex compiling warnings. (GH-1595) (#1605) Warnings emitted when compile a regular expression now always point to the line in the user code. Previously they could point into inners of the re module if emitted from inside of groups or conditionals.. (cherry picked from commit c7ac7280c321b3c1679fe5f657a6be0f86adf173) 16 May 2017, 15:16:45 UTC
72e5aa1 bpo-29651 - Cover edge case of square brackets in urllib docs (#1128) (#1597) (cherry picked from commit f6e863d868a621594df2a8abe072b5d4766e7137) 16 May 2017, 05:41:03 UTC
dd2a09c bpo-30242: resolve some undefined behaviours in struct (#1418) (#1587) 15 May 2017, 05:17:41 UTC
51ab4ad bpo-30110: fix resource leak in test_asyncio.test_events (#1413) (#1585) 15 May 2017, 05:17:13 UTC
f3291ee bpo-30358: Document sort argument of profile.runctx() (GH-1566) (cherry picked from commit 99776296230ddd8429ebad2d07854b8c27ea10ab) 14 May 2017, 15:31:32 UTC
9b7fe99 [3.5] Move Codecov's configuration file under .github (GH-1494) (#1575) (cherry picked from commit cbddf58c797f850a5b06f317a4bb7ab69c6e9715) 13 May 2017, 20:56:13 UTC
4ee34e1 [3.5] bpo-30178: Indent methods and attributes of MimeType class (GH-1306) (#1571) (cherry picked from commit c71168090df435c1eb8c03005b11df764cd7ebd6) 13 May 2017, 16:45:14 UTC
5e94ded bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1547) * bpo-30048: asyncio: fix Task.cancel() was ignored. (GH-1097) when there are no more `await` or `yield (from)` before return in coroutine, cancel was ignored. example: async def coro(): asyncio.Task.current_task().cancel() return 42 ... res = await coro() # should raise CancelledError (cherry picked from commit 991adca012f5e106c2d4040ce619c696ba6f9c46) * fix test 12 May 2017, 05:34:40 UTC
dab10f4 [3.5] bpo-30320, bpo-25277: backport test_eintr enhancements from master to 3.5 (#1532) * bpo-30320: test_eintr now uses pthread_sigmask() (#1523) Rewrite sigwaitinfo() and sigtimedwait() unit tests for EINTR using pthread_sigmask() to fix a race condition between the child and the parent process. Remove the pipe which was used as a weak workaround against the race condition. sigtimedwait() is now tested with a child process sending a signal instead of testing the timeout feature which is more unstable (especially regarding to clock resolution depending on the platform). (cherry picked from commit 211a392cc15f9a7b1b8ce65d8f6c9f8237d1b77f) * test_eintr: Fix ResourceWarning warnings (cherry picked from commit c50cccfcc3b3a9ef3fe7a78b7e7271930dc24aee) * test_eintr: remove unused import * bpo-25277: Add a watchdog to test_eintr Set a timeout of 10 minutes in test_eintr using faulthandler. 10 May 2017, 12:13:37 UTC
639e295 bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1530) (#1480) 10 May 2017, 11:11:09 UTC
9721729 test_eintr: less verbose, the test is now stable (#1521) Backport the change from the master branch. 10 May 2017, 00:38:09 UTC
8489409 [3.5] bpo-29243: Fix Makefile with respect to --enable-optimizations (GH-1478) (#1520) * bpo-29243: Fix Makefile with respect to --enable-optimizations When using the Profile Guided Optimization (./configure --enable-optimizations) Python is built not only during `make` but rebuilt again during `make test`, `make install` and others. This patch fixes the issue. Note that this fix produces no change at all in the Makefile if configure is run witout --enable-optimizations. * !squash. (cherry picked from commit a1054c3b0037d4c2a5492e79fc193f36245366c7) 09 May 2017, 15:12:35 UTC
f5f7870 bpo-29990: Fix range checking in GB18030 decoder (#1495) (#1508) When decoding a 4-byte GB18030 sequence, the first and third byte cannot exceed 0xFE. 09 May 2017, 04:17:09 UTC
c8faabc [3.5] Revert bpo-26293 for zipfile breakage. See also bpo-29094. (GH-1484). (#1486) (cherry picked from commit 3763ea865cee5bbabcce11cd577811135e0fc747) 06 May 2017, 12:11:20 UTC
0c9aa6f bpo-30264: ExpatParser closes the source on error (#1451) (#1475) ExpatParser.parse() of xml.sax.xmlreader now always closes the source: close the file object or the urllib object if source is a string (not an open file-like object). The change fixes a ResourceWarning on parsing error. Add test_parse_close_source() unit test. (cherry picked from commit ef9c0e732fc50aefbdd7c5a80e04e14b31684e66) 05 May 2017, 08:08:05 UTC
ee22948 [3.5] bpo-30243: Fixed the possibility of a crash in _json. (GH-1420) (#1470) It was possible to get a core dump by using uninitialized _json objects. Now __new__ methods create initialized objects. __init__ methods are removed.. (cherry picked from commit 76a3e51a403bc84ed536921866c86dd7d07aaa7e) 05 May 2017, 07:40:47 UTC
ab6b962 bpo-23404: make touch becomes make regen-all (#1405) (#1461) (#1465) * bpo-23404: make touch becomes make regen-all (#1405) Don't rebuild generated files based on file modification time anymore, the action is now explicit. Replace "make touch" with "make regen-all". Changes: * Remove "make touch", Tools/hg/hgtouch.py and .hgtouch * Add a new "make regen-all" command to rebuild all generated files * Add subcommands to only generate specific files: - regen-ast: Include/Python-ast.h and Python/Python-ast.c - regen-grammar: Include/graminit.h and Python/graminit.c - regen-importlib: Python/importlib_external.h and Python/importlib.h - regen-opcode: Include/opcode.h - regen-opcode-targets: Python/opcode_targets.h - regen-typeslots: Objects/typeslots.inc * Rename PYTHON_FOR_GEN to PYTHON_FOR_REGEN * pgen is now only built by by "make regen-grammar" * Add $(srcdir)/ prefix to paths to source files to handle correctly compilation outside the source directory Note: $(PYTHON_FOR_REGEN) is no more used nor needed by "make" default target building Python. (cherry picked from commit a5c62a8e9f0de6c4133825a5710984a3cd5e102b) * bpo-30273: Update sysconfig (#1464) The AST_H_DIR variable was removed from Makefile.pre.in by the commit a5c62a8e9f0de6c4133825a5710984a3cd5e102b (bpo-23404). AST_H_DIR was hardcoded to "Include", so replace the removed variable by its content. Remove also ASDLGEN variable from sysconfig example since this variable was also removed. (cherry picked from commit b109a1d3360fc4bb87b9887264e3634632d392ca) (cherry picked from commit 9d02f562961efd12d3c8317a10916db7f77330cc) 05 May 2017, 00:19:59 UTC
7299088 [3.5] bpo-30185: avoid KeyboardInterrupt tracebacks in forkserver (GH-1319) (#1455) * bpo-30185: avoid KeyboardInterrupt tracebacks in forkserver * Tweak comment. (cherry picked from commit 6dd4d734ed207ba16b017e38f8909de7ef187e29) 04 May 2017, 15:16:48 UTC
8a1c710 bpo-30225: Fix is_valid_fd() on macOS Tiger (#1443) (#1450) is_valid_fd() now uses fstat() instead of dup() on macOS to return 0 on a pipe when the other side of the pipe is closed. fstat() fails with EBADF in that case, whereas dup() succeed. (cherry picked from commit 1c4670ea0cc3d208121af11b9b973e6bb268e570) 04 May 2017, 11:21:16 UTC
943861f [3.5] bpo-30184: Add tests for invalid use of PyArg_ParseTupleAndKeywords. (GH-1316). (#1442) (cherry picked from commit 5f161fd86dd5bb936a1a2a13391b13b7e59ec201) 04 May 2017, 03:50:43 UTC
5274faf [3.5] bpo-28315: Improve code examples in docs (GH-1372) (#1446) Replace File "<stdin>", line 1, in ? with File "<stdin>", line 1, in <module> (cherry picked from commit 8856940cf2e82cb17db2b684cd5732fe658605ca) 04 May 2017, 01:41:12 UTC
4b15e45 [3.5] bpo-28556: Routine updates to typing (GH-1366) (#1417) - Add NoReturn type - Use WrapperDescriptorType (original PR by Jim Fasarakis-Hilliard) - Minor bug-fixes (cherry picked from commit f06e0218ef6007667f5d61184b85a81a0466d3ae) 03 May 2017, 16:37:50 UTC
5e9c110 bpo-24725: Skip the test_socket.testFDPassEmpty on OS X (#1427) In OS X 10.11, the test fails consistently due to a platform change since 10.10. Thanks to Jeff Ramnani for the patch. (cherry picked from commit 3c61a448f106c7cafb050ff7be5c5c421273e68f) 03 May 2017, 12:11:35 UTC
23b312b [3.6] bpo-28087: Skip test_asyncore and test_eintr poll failures on macOS (#463) (#1424) Skip some tests of select.poll when running on macOS due to unresolved issues with the underlying system poll function on some macOS versions. (cherry picked from commit de04644627f82d9dc48b3423def7ff5b4aa1926a) (cherry picked from commit 1d391f926b37484b8d4b326003a72c0084db19ec) 03 May 2017, 10:04:57 UTC
f99623a [3.5] Fix typo in selectors.rst (GH-1383) (#1415) decriptor -> descriptor (cherry picked from commit b0d82036549074357717d130a772d1e2ebc8ea01) 03 May 2017, 04:36:01 UTC
2298235 regrtest: always show before/after of modified env (#1407) Buildbots don't run tests with -vv and so only log "xxx was modified by test_xxx" which is not enough to debug such random issue. In many cases, I'm unable to reproduce the warning and so unable to fix it. Always logging the value before and value after should help to debug such warning on buildbots. (cherry picked from commit ec4b17239d899550be4ee6104b61751bb3c70382) 03 May 2017, 00:12:34 UTC
0d9d618 Backport bpo-30205 to 3.5 (#1404) 02 May 2017, 22:22:28 UTC
360fb81 [3.5] bpo-30232: Support Git worktree in configure.ac (#1398) (#1401) * bpo-30232: Support Git worktree in configure.ac (#1391) Don't test if .git/HEAD file exists, but only if the .git file (or directory) exists. (cherry picked from commit 5facdbb29169c2799c42f887cef4cd9d087b0167) * bpo-30232: Regenerate configure (#1396) Run autoconf. (cherry picked from commit 9ed34a89532763cf89f5e11fffb91ef7dee29fed) (cherry picked from commit 4dae0d111dd7bb34ec730eea2327a3219acff211) 02 May 2017, 22:06:17 UTC
9b854de Issue 27372: Stop test_idle from changing locale, so test passes. (#1397) In 3.6, the warning is now called an error, making it harder to ignore. (cherry picked from commit 7c1534141d3a159a32db9742e1d201d5c7a9ba81) 02 May 2017, 21:06:39 UTC
89a54c7 bpo-30199: test_ssl closes all asyncore channels (#1381) (#1389) AsyncoreEchoServer of test_ssl now calls asyncore.close_all(ignore_all=True) to ensure that asyncore.socket_map is cleared once the test completes, even if ConnectionHandler was not correctly unregistered. Fix the following warning: Warning -- asyncore.socket_map was modified by test_ssl Before: {} After: {6: <test.test_ssl.AsyncoreEchoServer.EchoServer.ConnectionHandler>} (cherry picked from commit 1dae7450c68bad498e57800387b24cb103c461fa) 02 May 2017, 14:48:36 UTC
3ceeb84 bpo-30132: distutils BuildExtTestCase use temp_cwd (#1387) (#1388) BuildExtTestCase of test_distutils now uses support.temp_cwd() in setUp() to remove files created in the current working in all BuildExtTestCase unit tests, not only test_build_ext(). Fix the following warning: Warning -- files was modified by test_distutils Before: [] After: ['vc140.pdb'] (cherry picked from commit 30768958490c658fba0fe24f1cabbdad44be22ff) 02 May 2017, 14:26:04 UTC
092f460 bpo-30108: Restore sys.path in test_site (#1197) (#1379) Add setUpModule() and tearDownModule() functions to test_site to save/restore sys.path at the module level to prevent warning if the user site directory is created, since site.addsitedir() modifies sys.path. (cherry picked from commit b85c136903c6d2368162f7c4a58f258c9c69ead0) 02 May 2017, 09:45:45 UTC
03a7ab7 bpo-30104: Use -fno-strict-aliasing on clang (#1376) (#1377) Python/dtoa.c is not compiled correctly with clang 4.0 and optimization level -O2 or higher, because of an aliasing issue on the double/ULong[2] union. Only compile dtoa.c with -fno-strict-aliasing. LLVM bug report: https://bugs.llvm.org//show_bug.cgi?id=31928 (cherry picked from commit 809101f14f27ddb394cd77c477470761ecf99f41) 02 May 2017, 09:16:21 UTC
e37d163 [3.5] Improve the grammar in windows.rst (GH-1330) (GH-1359) (cherry picked from commit 80a3da4d4aad0b51893e1e2f696b6252eca80e07) 30 April 2017, 05:18:51 UTC
52630ae [3.5] bpo-30208: DOC: fix small typos in IDLE (#1357) (cherry picked from commit d9af73330f46d79cc0c56d369f65ebeec3cb5334) 30 April 2017, 00:43:11 UTC
910ba93 [3.5] bpo-30197: Enhance functions swap_attr() and swap_item() in test.support. (#1341) (#1346) They now work when delete replaced attribute or item inside the with statement. The old value of the attribute or item (or None if it doesn't exist) now will be assigned to the target of the "as" clause, if there is one. (cherry picked from commit d1a1def7bf221b04dcf3fc3a67aa19aa2f622f83) 28 April 2017, 17:05:53 UTC
98c7a9e [3.5] bpo-30107: don't dump core on expected test_io crash (#1235) (#1344) * bpo-30107: Make SuppressCrashReport quiet on macOS (#1279) (#1335) On macOS, SuppressCrashReport now redirects /usr/bin/defaults command stderr into a pipe to not pollute stderr. It fixes a test_io.test_daemon_threads_shutdown_stderr_deadlock() failure when the CrashReporter domain doesn't exists. Message logged into stderr: 2017-04-24 16:57:21.432 defaults[41046:2462851] The domain/default pair of (com.apple.CrashReporter, DialogType) does not exist (cherry picked from commit d819ad9832292d854e9710493ecdf959b69802e3) * bpo-30107: don't dump core on expected test_io crash (#1235) test_io has two unit tests which trigger a deadlock: * test_daemon_threads_shutdown_stdout_deadlock() * test_daemon_threads_shutdown_stderr_deadlock() These tests call Py_FatalError() if the expected bug is triggered which calls abort(). Use test.support.SuppressCrashReport to prevent the creation on a core dump, to fix the warning: Warning -- files was modified by test_io Before: [] After: ['python.core'] 28 April 2017, 14:59:44 UTC
d855e53 bpo-30131: test_logging now joins queue threads (#1298) (#1318) QueueListenerTest of test_logging now closes the multiprocessing Queue and joins its thread to prevent leaking dangling threads to following tests. Add also @support.reap_threads to detect earlier if a test leaks threads (and try to "cleanup" these threads). (cherry picked from commit 8ca2f2faefa8dba323a2e4c4b86efb633d7a53cf) 28 April 2017, 02:27:11 UTC
0eda2d4 bpo-30175: Skip client cert tests of test_imaplib (#1320) (#1324) * bpo-30175: Skip client cert tests of test_imaplib The IMAP server cyrus.andrew.cmu.edu doesn't accept our randomly generated client x509 certificate anymore. * bpo-30188: Catch EOFError in NetworkedNNTPTests test_nntplib fails randomly with EOFError in NetworkedNNTPTests.setUpClass(). Catch EOFError to skip tests in that case. (cherry picked from commit 5bccca58b9b2b3a925b16750bedbd907695ea8d7) 27 April 2017, 19:32:09 UTC
c4dfe25 [3.5] bpo-30182: Use the correct name for ISO in Unicode HOWTO. (GH-1312) (GH-1314) (cherry picked from commit 6fde770e4e940c19cd62de0b6aeb77840690843e) 27 April 2017, 05:19:09 UTC
9a626ec [3.5] bpo-30142: Remove "callable" from the 2to3fixer documentation. (GH-1304) 26 April 2017, 16:55:21 UTC
271a289 bpo-29974: Improve typing.TYPE_CHECKING example (GH-982) * Fix PEP 8 (SomeType instead of some_type) * Add a function parameter annotation * Explain, using wording from PEP 484 and PEP 526, why one annotation is in quotes and another is not. Suggested by Ivan Levkevskyi. (cherry picked from commit 87c07fe9d908d0a2143fcc8369255c6ff3241503) 26 April 2017, 14:24:35 UTC
c7b8367 bpo-28698: Fix c_wchar_p doc example (GH-1160) (cherry picked from commit 0d637e236d7099f7b724026c8cb7bd83d8e12e6b) 26 April 2017, 08:47:03 UTC
d51d093 [3.5] bpo-29751: Improve PyLong_FromString documentation (GH-915) (#1267) (cherry picked from commit 26896f2832324dde85cdd63d525571ca669f6f0b) 24 April 2017, 04:02:30 UTC
c358536 [3.5] bpo-15718: Document the upper bound constrain on the __len__ return value. (GH-1256) (#1260) (cherry picked from commit 85157cd) 23 April 2017, 05:50:20 UTC
7badde2 [3.5] Fix trailing colon and newline in test.rst (GH-1250) (#1255) (cherry picked from commit 7fae81e1672d0b4110d31ea6a765b54f63a2e54b) 22 April 2017, 11:49:40 UTC
503d74a bpo-30098: Clarify that run_coroutine_threadsafe expects asyncio.Future (GH-1170) (#1246) (cherry picked from commit ae5b3260dd459845aad8a30491b76d471577785d) 22 April 2017, 02:58:01 UTC
17db4b9 [3.5] bpo-29802: Fix the cleaning up issue in PyUnicode_FSDecoder(). (GH-1217) (#1219) (cherry picked from commit 7a113a0) 21 April 2017, 07:55:54 UTC
ed5e065 [3.5] Add missing .gitignore entries for VS2015 IntelliSense DB (GH-1223) (#1226) (cherry picked from commit 8e675286a92f33837cfffac5914b5175dac5d573) 21 April 2017, 03:56:03 UTC
60d27f4 [3.5] bpo-30109: Fix reindent.py (GH-1207) (GH-1209) Skip the file if it has bad encoding. (cherry picked from commit 58f3c9dc8f5626abe09ac9738c34f6ba99ce2972) 20 April 2017, 14:12:50 UTC
ad2d47d Remove redundant comma in argparse HOWTO (GH-1141) Reported by Sean Canavan on docs@p.o. (cherry picked from commit 8526fb74edf5ac9ca175b7cdcb0d82bb8780d2cf) 20 April 2017, 04:40:05 UTC
6fb0f80 bpo-30078: Add an example of passing a path to unittest (GH-1178) (cherry picked from commit f7e62cf8adfb8ab6a6a870903defe8ff218a0383) 20 April 2017, 04:37:18 UTC
7e56fe3 bpo-19225: Remove duplicated description for standard warning categories (GH-1068) 20 April 2017, 03:56:05 UTC
c97c191 [3.5] bpo-30065: Fixed arguments validation in _posixsubprocess.fork_exec(). (GH-1110) (#1190) (cherry picked from commit 66bffd1) 19 April 2017, 21:51:05 UTC
952a05e [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the parser module. (GH-1131). (#1185) (cherry picked from commit a79f4c219531c05fc8f670c1e4bbf12c081935d3) 19 April 2017, 20:44:43 UTC
e63af29 [3.5] bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (GH-1096) (GH-1180) (#1182) raised an error. (cherry picked from commit bf623ae8843dc30b28c574bec8d29fc14be59d86) (cherry picked from commit 680fea4067537a9b9c79aadd44a3a19e83cd2dbf) 19 April 2017, 19:09:56 UTC
49a9059 [3.5] bpo-29943: Do not replace the function PySlice_GetIndicesEx() with a macro (#1049) if Py_LIMITED_API is not defined. 16 April 2017, 09:03:51 UTC
4f43f87 bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is present (#1130) (#1151) 15 April 2017, 05:28:08 UTC
f40e72d [3.5] bpo-30059: Include Py_Ellipsis in C API documentation (GH-1018) (GH-1148) 15 April 2017, 02:05:00 UTC
c40740c [3.5] bpo-29738: Fix memory leak in _get_crl_dp (GH-526) (GH-1143) * Remove conditional on free of `dps`, since `dps` is now allocated for all versions of OpenSSL * Remove call to `x509_check_ca` since it was only used to cache the `crldp` field of the certificate CRL_DIST_POINTS_free is available in all supported versions of OpenSSL (recent 0.9.8+) and LibreSSL. (cherry picked from commit 2849cc34a8db93d448a62d69c462402347b50dcb) 15 April 2017, 01:36:11 UTC
d960d76 Fix misplaced positional argument in OS X support library (#1135) 14 April 2017, 14:45:17 UTC
47f24a0 Relax test timing (bpo-29861) to avoid sporadic failures (#1120) (#1133) (cherry picked from commit 685cdb9acc3fca04a9897d88b89771ddfd50e772) 14 April 2017, 11:45:27 UTC
d7abeb7 [3.5] bpo-29694: race condition in pathlib mkdir with flags parents=True (GH-1089). (GH-1127) (cherry picked from commit 22a594a0047d7706537ff2ac676cdc0f1dcb329c) 14 April 2017, 02:26:24 UTC
118cf91 [3.5] Fix a typo in Doc/library/functions.rst (GH-1117) (GH-1124) Replace `For object's ... ` with `For objects ...` (cherry picked from commit 873ef20d0007b4b120933473e6252d2309a70102) 13 April 2017, 23:38:17 UTC
e2cf9a9 bpo-30021: Add examples for re.escape(). (#1048) (#1116) And fix the parameter name. (cherry picked from commit 8fc7bc2b7631ee819ee614e47b6f44bacebe1574) 13 April 2017, 16:41:26 UTC
df97837 bpo-29791: Clarify that flush is keyword-only argument (GH-1093) Reported by Lucio Ricardo Montero Valenzuela. (cherry picked from commit 61b9ac93712df8092a25223cd56fa6528359792b) 13 April 2017, 13:16:30 UTC
4d015a4 [3.5] bpo-29692: contextlib.contextmanager may incorrectly unchain RuntimeError (GH-949) (#1107) contextlib._GeneratorContextManager.__exit__ includes a special case to deal with PEP 479 RuntimeErrors created when `StopIteration` is thrown into the context manager body. Previously this check was too permissive, and undid one level of chaining on *all* RuntimeError instances, not just those that wrapped a StopIteration instance. (cherry picked from commit 00c75e9a45ff0366c185e9e8a2e23af5a35481b0) 13 April 2017, 10:14:53 UTC
c0f4240 [3.5] Clarify exception handler scope in contextlib (GH-1104) Moved explicit raise from inside try to try...else. (cherry picked from commit 680e20beee8bbce9f857b8e7795009191f98b0ba) 13 April 2017, 04:05:25 UTC
f3972dd [3.5] Remove superfluous comment in urllib.error. (GH-1076) (GH-1102) (cherry picked from commit 6fab78e9027f9ebd6414995580781b480433e595) 13 April 2017, 03:46:07 UTC
72b1d41 bpo-26985: Add missing info of code object in inspect documentation (GH-1090) (GH-1100) 13 April 2017, 03:37:38 UTC
1adca39 Remove OSError related comment in urllib.request. (#1071) (cherry picked from commit 6dfcc81f6b1c82a71a1c876e14424fb8b3573447) 10 April 2017, 03:38:00 UTC
aa218af [3.5] Correct typo in configparser.rst (GH-1012) (GH-1027) (cherry picked from commit 01fa9ae5460b00bf1ced500c797176ebd3fb060d) 09 April 2017, 22:16:14 UTC
d4489da Remove invalid comment in urllib.request.(#1056) (cherry picked from commit a2a9ddd923a849124bdd1c484f70f02df6fde0e9) 09 April 2017, 17:14:48 UTC
bd18351 bpo-29506: Clarify deep copy note in copy module The reference to administrative data was confusing to readers, so this simplifies the note to explain that deep copying may copy more then you intended, such as data that you expected to be shared between copies. (cherry picked from commit 19e04942562a980ad2519f6ff79c455a7472783b) 09 April 2017, 10:57:15 UTC
c82d394 bpo-29798: Handle git worktree in patchcheck The original attempted fix missed an `isdir()` call in `get_base_branch()`. (cherry picked from commit 2abfdf5a81383d3b1ed6b7321903a9a168c373c5) 09 April 2017, 09:22:50 UTC
e63f8f2 bpo-29998: Pickling and copying ImportError now preserves name and path (#1010) (#1043) attributes. (cherry picked from commit b785396ab451b0c9d6ae9ee5a9e56c810209a6cb) 08 April 2017, 08:26:03 UTC
fa25f16 Expand the PySlice_GetIndicesEx macro. (#1023) (#1045) (cherry picked from commit b879fe82e7e5c3f7673c9a7fa4aad42bd05445d8) 08 April 2017, 08:18:30 UTC
ae0915e Closes bpo-29939: suppress compiler warnings in _ctypes_test (#1039) Changed test code to suppress a compiler warning, while taking care to avoid the code being optimized out by the compiler. (cherry picked from commit 164d30eb1e66575dafee6af4fca4cbf52c7fbe6a) 07 April 2017, 22:24:51 UTC
f688f18 Fix a minor typo. (#1032) (#1036) (cherry picked from commit dd9a0a14c89d57e43898d4b866b8c161e4ff8506) 07 April 2017, 20:50:20 UTC
041e600 Remove Invalid comment in test_urllib2.py (#1021) (cherry picked from commit fd0cd07a5a3c964c084f4efc5bbcb89dd2193ee6) 07 April 2017, 07:56:41 UTC
2cfe583 [3.5] bpo-19225: Lack of c api exceptions doc (#965) * Keep the c-api exception doc up-to-date cherry-pick'ed from ec1f5df..e3d6db3 and fix conflict 06 April 2017, 14:00:15 UTC
2d8bda5 correct parse_qs and parse_qsl test case descriptions. (#968) (#998) (cherry picked from commit 257b980b316a5206ecf6c23b958e2b7c4df4f3de) 05 April 2017, 13:52:53 UTC
846bd39 Miscellaneous minor fixes of Misc/NEWS formatting. (#1002) (#1006) (cherry picked from commit a0157b5f11e621f2196af4e918b9f07688a6cd1c) 05 April 2017, 10:42:37 UTC
0f9ceaf bpo-29725: DOC: add text for arraysize in sqlite3.Cursor (#947) (#986) (cherry picked from commit 02e12138000da834f23719521a011fa93763384d) 04 April 2017, 05:28:23 UTC
9881e02 Minor spell fix and formatting fixes in urllib tests. (#959) (#960) (cherry picked from commit efbd4ea65dbb9f87b1afeec6a760802756badee5) 02 April 2017, 08:37:04 UTC
553275d bpo-29941: Assert fixes (#886) (#956) Make a non-Py_DEBUG, asserts-enabled build of CPython possible. This means making sure helper functions are defined when NDEBUG is not defined, not just when Py_DEBUG is defined. Also fix a division-by-zero in obmalloc.c that went unnoticed because in Py_DEBUG mode, elsize is never zero. (cherry picked from commit a00c3fd12d421e41b769debd7df717d17b0deed5 and 06bb4873d6a9ac303701d08a851d6cd9a51e02a3) 02 April 2017, 03:20:24 UTC
51fc7e3 bpo-26947: DOC: clarify wording on hashable in glossary (#948) (#958) (cherry picked from commit 64c887ab3a400cf91bde4f0c5ef69eacc88bc5e1) 02 April 2017, 03:00:41 UTC
f315812 bpo-29952: Use usual terminology of dict (GH-923) s/keys and elements/keys and values/ (cherry picked from commit cdcac039fb447f2ab04efcacbe663751bb2cb4ec) 31 March 2017, 06:43:35 UTC
6356a3b Remove catching OSError in ftphandler test. Only URLError is raised in urllib.request module. (#918) (#921) (cherry picked from commit ed3dd1c02af6872bd0748f7b9a5dadb89f7b830f) 31 March 2017, 06:15:56 UTC
9273dfe bpo-29942: Fix the use of recursion in itertools.chain.from_iterable. (#912) Fix the use of recursion in itertools.chain.from_iterable. Using recursion is unnecessary, and can easily cause stack overflows, especially when building in low optimization modes or with Py_DEBUG enabled. (cherry picked from commit 5466d4af5fe76ec0a5fbc8a05675287d9e8e9d14) 30 March 2017, 19:48:55 UTC
8b8bde4 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) (#907) (#909) when pass indices of wrong type. (cherry picked from commit d4edfc9abffca965e76ebc5957a92031a4d6c4d4) (cherry picked from commit bf4bb2e43030661e568d5d4b046e8b9351cc164c) 30 March 2017, 17:31:46 UTC
c90ff1b bpo-27863: Fixed multiple crashes in ElementTree. (#765) (#904) (cherry picked from commit 576def096ec7b64814e038f03290031f172886c3) 30 March 2017, 07:32:19 UTC
0fadf25 Remove an unrequired TODO in test_urllib2. (#897) (#901) (cherry picked from commit e6911a44f69c0d302db60f49952a9cf69da69a2b) 30 March 2017, 06:56:57 UTC
d1dbbaa bpo-29917: DOC: Remove link from PyMethodDef (#890) (#895) (cherry picked from commit c3c7ef088583cc12bd218138036d1edb6de9c63f) 30 March 2017, 05:29:06 UTC
eef6e11 bpo-29677: DOC: clarify documentation for `round` (GH-877) (GH-893) (cherry picked from commit 85deefcf61d3cc192846f41a4ccc6df17da60c98) 30 March 2017, 02:10:22 UTC
9f8e090 bpo-28699: fix abnormal behaviour of pools in multiprocessing.pool (GH-884) an exception raised at the very first of an iterable would cause pools behave abnormally (swallow the exception or hang) 29 March 2017, 04:51:29 UTC
0957f26 bpo-16011: clarify that 'in' always returns a boolean value (GH-152) (GH-875) (cherry picked from commit 0ae7c8bd614d3aa1fcaf2d71a10ff1148c80d9b5) 28 March 2017, 16:32:50 UTC
e6a4953 bpo-29643: Fix check for --enable-optimizations (GH-871) The presence of the ``--enable-optimizations`` flag is indicated by the value of ``$enableval``, but the configure script was checking ``$withval``, resulting in the ``--enable-optimizations`` flag being effectively ignored. (cherry picked from commit 8cea5929f52801b0ce5928b46ef836e99a24321a) 28 March 2017, 15:26:29 UTC
8994f36 bpo-29677: DOC: clarify documentation for `round` (GH-357) (GH-863) (cherry picked from commit 6003db7db5fec545c01923c198a5fdfca5a91538) 28 March 2017, 00:09:21 UTC
back to top