https://github.com/python/cpython

sort by:
Revision Author Date Message Commit Date
d48eceb Update to 3.6.4 19 December 2017, 04:53:56 UTC
c7d7f77 Update NEWS for 3.6.4 final 19 December 2017, 04:50:55 UTC
898a3e4 bpo-32284: Fix documentation of BinaryIO and TextIO (GH-4832) (#4833) (cherry picked from commit c3e070f84931c847d1b35e7fb36aa71edd6215f6) 19 December 2017, 04:25:37 UTC
638f68c Allows non-critical upload steps to fail (GH-4742) (#4743) (cherry picked from commit 9ab11b3a029fba36c1a7e869be87fb4f31ebcf24) 19 December 2017, 04:25:18 UTC
3398dcb Bump to 3.6.4rc1 05 December 2017, 08:26:08 UTC
de4c3f3 Update NEWS and pydoc topics. 05 December 2017, 08:17:05 UTC
0da2597 Tidy NEWS entry. 05 December 2017, 07:41:31 UTC
3b55416 Add a missing space in tkinter documentation. (GH-4692) (GH-4722) (cherry picked from commit ae342cf7deebdcf2035f4064609b32b2102dadcf) 05 December 2017, 05:16:20 UTC
d9cadc5 [3.6] bpo-31380: Skip test_httpservers test_undecodable_file on macOS. (GH-4720) (#4721) The undecodable file name cannot be created on macOS APFS file systems. (cherry picked from commit b3edde8dd44c878e9f039a2165d00ff075157d4b) 05 December 2017, 05:03:29 UTC
e2ba552 bpo-28791: Update Windows builds to use SQLite 3.21.0. (GH-4246). (GH-4717) (cherry picked from commit 31af650ee25f65794b75d4dfefed6fe4758781c1) 05 December 2017, 04:09:57 UTC
0bec5e1 [3.6] bpo-31392: Update macOS installer to use OpenSSL 1.0.2m (GH-4715) (#4716) (cherry picked from commit 24e046987b8e34bb4f1f3fd9bd31f1d605e347dc) 05 December 2017, 03:54:43 UTC
b057627 [bpo-28556] Minor fixes for typing module (GH-4710) (#4713) (cherry picked from commit 29bc19321018ec6e58f9f4da9c18c42e9a9c580e) 05 December 2017, 03:02:02 UTC
a72e7bf [3.6] bpo-28791: Update macOS installer to use SQLite 3.21.0. (#4245) (#4711) 05 December 2017, 02:29:30 UTC
9da33c8 bpo-32207: Improve tk event exception tracebacks in IDLE. (GH-4703) (#4705) When tk event handling is driven by IDLE's run loop, a confusing and distracting queue.EMPTY traceback context is no longer added to tk event exception tracebacks. The traceback is now the same as when event handling is driven by user code. Patch based on a suggestion by Serhiy Storchaka. (cherry picked from commit 1e2fcac4972530aa2c963d7e4011021df5ba866e) 04 December 2017, 22:02:32 UTC
6e68794 bpo-30928: Update idlelib/NEWS.txt to 2017 Dec 3. (GH-4701) (#4702) Patches are in 3.7.0a3 even if this update is not. (cherry picked from commit 21255fc3932a60c064f85c0fe68f2840f390ebe4) 04 December 2017, 20:23:18 UTC
a87ba60 bpo-27240 Rewrite the email header folding algorithm. (GH-3488) (#4693) The original algorithm tried to delegate the folding to the tokens so that those tokens whose folding rules differed could specify the differences. However, this resulted in a lot of duplicated code because most of the rules were the same. The new algorithm moves all folding logic into a set of functions external to the token classes, but puts the information about which tokens can be folded in which ways on the tokens...with the exception of mime-parameters, which are a special case (which was not even implemented in the old folder). This algorithm can still probably be improved and hopefully simplified somewhat. Note that some of the test expectations are changed. I believe the changes are toward more desirable and consistent behavior: in general when (re) folding a line the canonical version of the tokens is generated, rather than preserving errors or extra whitespace. (cherry picked from commit 85d5c18c9d83a1d54eecc4c2ad4dce63194107c6) 04 December 2017, 00:46:23 UTC
30a6bc8 bpo-31619: Fixed integer overflow in converting huge strings to int. (GH-3884) (#4690) (cherry picked from commit 29ba688034fc4eef0693b86002cf7bee55d692af) 03 December 2017, 21:27:21 UTC
c8f32aa [3.6] bpo-32176: Set CO_NOFREE in the code object constructor (GH-4684) Previously, CO_NOFREE was set in the compiler, which meant it could end up being set incorrectly when code objects were created directly. Setting it in the constructor based on freevars and cellvars ensures it is always accurate, regardless of how the code object is defined. (cherry picked from commit 078f1814f1a4413a2a0fdb8cf4490ee0fc98ef34) 03 December 2017, 13:32:54 UTC
2ad350a [3.6] bpo-31589 : Build PDF using xelatex for better UTF8 support. (GH-3940) (#4683) Also addresses doc build failures documented in bpo-32200. (cherry picked from commit 7324b5ce8e7c031a0a3832a6a8d7c639111ae0ff) 02 December 2017, 22:35:08 UTC
9881e4e Don't hide unexpected errors in PyErr_WarnExplicitObject(). (GH-4585) (#4662) (cherry picked from commit a561862048555d555fa4850eaf832ae5474c7e1f) 01 December 2017, 07:21:45 UTC
8bcd410 bpo-32186: Release the GIL during lseek and fstat (GH-4652) (#4661) In _io_FileIO_readall_impl(), lseek() and _Py_fstat_noraise() were called without releasing the GIL. This can cause all threads to hang for unlimited time when calling FileIO.read() and the NFS server is not accessible. (cherry picked from commit 6a89481680b921e7b317c29877bdda9a6031e5ad) 01 December 2017, 06:26:31 UTC
e10c9de bpo-20891: Fix PyGILState_Ensure() (#4650) (#4655) When PyGILState_Ensure() is called in a non-Python thread before PyEval_InitThreads(), only call PyEval_InitThreads() after calling PyThreadState_New() to fix a crash. Add an unit test in test_embed. Enhance also embedded tests, backport from master: * Add test_pre_initialization_api() * Set PYTHONIOENCODING environment variable in test_forced_io_encoding() (cherry picked from commit b4d1e1f7c1af6ae33f0e371576c8bcafedb099db) 30 November 2017, 22:36:49 UTC
29cb50b [3.6] make tags: index also Modules/_ctypes/ (#4648) (#4659) * `make tags` fixes (GH-717) * Fix `make tags` warnings `make tags` target tries to find C sources and headers in "Grammar" and "Mac" folders and generates these warnings: ctags: Warning: cannot open source file "Grammar/*.[ch]" : No such file or directory ctags: Warning: cannot open source file "Mac/*.[ch]" : No such file or directory This commit changes $SRCDIRS variable in configure.ac to remote these directories. This variable is used only for tags generation. Also, "configure" was regenerated with `autoreconf`. * Fix `make tags` fail on non-default tag names When ctags overrides default tags filename (e.g. `-f .tags`) `make tags` is failed because it assumes to see default `tags` filename: sort: cannot read: tags: No such file or directory This commit explicitly specifies "tags" filename for tags generation. (cherry picked from commit 8a543c0bc7347d5b333f334d157bf4a7cd33c14a) * make tags: index also Modules/_ctypes/ (#4648) Avoid also "cd $(srcdir)" to not change the current directory. (cherry picked from commit 3be3b97a9709d3cd5303175ddbffa7dcca57ac3e) 30 November 2017, 22:34:21 UTC
8cd3108 bpo-32072: Fix issues with binary plists. (GH-4455) (#4654) * Fixed saving bytearrays. * Identical objects will be saved only once. * Equal references will be load as identical objects. * Added support for saving and loading recursive data structures. (cherry picked from commit a897aeeef647259a938a36cb5eb6680c86021c6a) 30 November 2017, 22:15:30 UTC
c91bf74 bpo-28416: Break reference cycles in Pickler and Unpickler subclasses (GH-4080) (#4653) with the persistent_id() and persistent_load() methods. (cherry picked from commit 986375ebde0dd5ff2b7349e445a06bd28a3a8ee2) 30 November 2017, 21:30:39 UTC
92a2c07 Skip test_socket.test_sha256() on linux < 4.5 (GH-4643) (#4645) bpo-31705. (cherry picked from commit 86afc1f2a7fb3afe00779c6426bc141bc795d9a3) 30 November 2017, 13:43:43 UTC
dedcbee [3.6] bpo-30923, bpo-31279: Fix GCC warnings (#4620) * bpo-30923: Silence fall-through warnings in libexpat build. (#3205) (cherry picked from commit 9e1e6f528f3fec16b9bd99f5ee38048ffec04a81) * bpo-31279: Silence -Wstringop-overflow warning. (#3207) (cherry picked from commit dce6502059f46a04f90938b9d832394c8215397b) 29 November 2017, 23:00:35 UTC
06be9da bpo-32030: Fix test_sys.test_getallocatedblocks() (#4637) Skip the test if PYTHONMALLOC environment variable is set. 29 November 2017, 22:51:41 UTC
23cc8c0 [3.6] bpo-32107 - Backport bitmask check fix (GH-4576) (#4591) Remove a flakey test and rewrite another one for readability. 29 November 2017, 15:35:02 UTC
b0df786 bpo-32139: test_strftime does not anymore modify the locale (GH-4569) (#4635) (cherry picked from commit cc55e78acab93a495c974b9a2ea71c8bb9cc2f5d) 29 November 2017, 15:18:22 UTC
957aef7 bpo-32164: Delete unused file idlelib/tabbedpages.py (GH-4628) (#4631) (cherry picked from commit 041efd292ebff46060fc1680b0608b1d4c876a48) 29 November 2017, 06:07:21 UTC
a8de696 bpo-30781: Remove unused imports in idlelib.configdialog. (GH-4627) (#4630) (cherry picked from commit e8f7c78a868834bb53fa0ac903fc87785112f49e) 29 November 2017, 03:46:32 UTC
38ecf57 bpo-32100: Delete unneeded import in idlelib.pathbrowser. (GH-4626) (#4629) (cherry picked from commit fd6f8c56b9a757210e8ceaea9edc50e502dc2085) 29 November 2017, 03:15:06 UTC
230ffea bpo-32110: codecs.StreamReader.read(n) now returns not more than n (GH-4499) (#4622) characters/bytes for non-negative n. This makes it compatible with read() methods of other file-like objects. (cherry picked from commit 219c2de5ad0fdac825298bed1bb251f16956c04a) 29 November 2017, 00:06:53 UTC
6979fcd bpo-32155: Bugfixes found by flake8 F841 warnings (#4619) * turtledemo: wait until macOS osascript command completes to not create a zombie process * Tools/scripts/treesync.py: declare 'default_answer' and 'create_files' as globals to modify them with the command line arguments. Previously, -y, -n, -f and -a options had no effect. flake8 warning: "F841 local variable 'p' is assigned to but never used". 28 November 2017, 22:04:12 UTC
5f6d2bb Use raw strings in the re module examples. (GH-4616) (#4617) (cherry picked from commit c615be5166ed338c052fa67fe781b9bfe0dfb78c) 28 November 2017, 21:21:09 UTC
cb79c22 bpo-31440: Changed default module search path for windows (#4613) (cherry picked from commit 08d2b86a1058b733bb7f1ae2b55818dd9687d21c) 28 November 2017, 17:18:26 UTC
4237939 asyncio: Fix BaseSelectorEventLoopTests (GH-4595) (#4599) Currently, two tests fail with PYTHONASYNCIODEBUG=1 (or using -X dev). (cherry picked from commit 92f9339a58a613a56683510499509d1b702921a8) 28 November 2017, 09:32:53 UTC
f54e405 asyncio: Remove unused Future._tb_logger attribute (GH-4596) (#4598) It was only used on Python 3.3, now only Future._log_traceback is used. (cherry picked from commit c16bacec3c2f08a74e4dc282f7d84f17ec70d0d5) 28 November 2017, 09:32:28 UTC
d5c71b0 pythoninfo: add Py_DEBUG (#4198) (#4580) (cherry picked from commit afd055a59fe0291881fc2459215ce106e424da51) 27 November 2017, 09:44:53 UTC
8a95753 bpo-32051: Fix name shadowing in multiprocessing docs (GH-4469) (cherry picked from commit c172fc5031a4035986bef0b2fcef906706d7abf3) 27 November 2017, 01:22:50 UTC
cceb0f8 bpo-29879: Update typing documentation. (GH-4573) (GH-4574) - Add "version added: 3.5.2" note where it was missing. - Remove the mention that Reversible is new in 3.5.2 (cherry picked from commit 0cd2e81bea639828d7c9a7afc61fb1da9699492c) 26 November 2017, 22:27:44 UTC
04af8ac bpo-32059: setup.py now also searches the sysroot paths (GH-4452) (#4562) detect_modules() in setup.py now also searches the sysroot paths when cross-compiling. (cherry picked from commit 77f5139954a878b856b0ac4c76486b27b6f4ec26) 25 November 2017, 16:52:20 UTC
6bce8ac [Doc] Update opcode for var-positional arguments (GH-4446) (#4457) `BUILD_MAP_UNPACK_WITH_CALL` was duplicated as the opcode for both var-positional and var-keyword arguments. The opcode for the former was updated as `BUILD_TUPLE_UNPACK_WITH_CALL`. (cherry picked from commit 0c71653cb8231f176d02140fdef3706de2e93b9f) 25 November 2017, 15:57:41 UTC
db897b1 Improve Scheduler Objects documentation. (GH-4556) (GH-4557) Mention that the lower the priority number, the higher priority it represents. (cherry picked from commit 9d5ec808de2c1359f434cc2fa8378458e4339c96) 25 November 2017, 05:48:26 UTC
3e60747 bpo-30004: Fix the code example of using group in Regex Howto Docs (GH-4443) (GH-4554) The provided code example was supposed to find repeated words, however it returned false results. (cherry picked from commit 610e5afdcbe3eca906ef32f4e0364e20e1b1ad23) 25 November 2017, 05:03:04 UTC
dde38b9 bpo-32128: Skip test_nntplib.test_article_head_body() (GH-4552) (#4553) The NNTP server currently has troubles with SSL, whereas we don't have the control on this server. This test blocks all CIs, so disable it until a fix can be found. (cherry picked from commit 706cb3162e15271ecfeba15909ed48a3a437009f) 25 November 2017, 02:02:47 UTC
05ee121 Asyncion-Dev docs: Fix the reference to sys.excepthook (GH-4414) (GH-4549) (cherry picked from commit f8802d80b32dbc64f9e0e72270695d24ac50e246) 25 November 2017, 00:07:37 UTC
7b909a9 Improve the String tutorial docs (GH-4541) (GH-4545) The paragraph that contains example of string literal concatenation was placed after the section about concatenation using the '+' sign. Moved the paragraph to the appropriate section. (cherry picked from commit 78a5722ae950b80a4b3d13377957f3932195aef3) 24 November 2017, 17:35:08 UTC
412f00b [3.6] bpo-12239: Make GetProperty() return None for VT_EMPTY (GH-4539) The previous behavior was to raise an exception NotImplementedError: result of type 0 when the value of the property is VT_EMPTY. (cherry picked from commit 19fb134185ce155bc53f517116fca73093ba55e9) 24 November 2017, 16:04:40 UTC
bfa89b2 bpo-12382: Make OpenDatabase() raise better exception messages (GH-4528) Previously, 'msilib.OpenDatabase()' function raised a cryptical exception message when it couldn't open or create an MSI file. For example: Traceback (most recent call last): File "<stdin>", line 1, in <module> _msi.MSIError: unknown error 6e (cherry picked from commit 4864a619dc1cc9092780ccf5a6327e8abf66133d) 24 November 2017, 10:31:21 UTC
90abbee Extending Python Doc minor updates (GH-4518) (GH-4535) Move footnote markers to be closer to the related terminology: before the end of the sentence, instead of after. (cherry picked from commit cdfe910e746e1d0fc43429b8cc3384a65a19b358) 24 November 2017, 08:55:23 UTC
ff847d1 bpo-31325: Fix usage of namedtuple in RobotFileParser.parse() (GH-4529) (#4533) (cherry picked from commit 3df02dbc8e197053105f9dffeae40b04ec66766e) 23 November 2017, 23:57:58 UTC
a645b23 bpo-30456: Clarify example for duplicates in second argument of isinstance (GH-1699) (cherry picked from commit 26248ef58dcf49619930ffa2e050ffa687a88601) 23 November 2017, 20:27:25 UTC
70b2f87 [3.6] bpo-31324: Optimize support._match_test() (#4523) * bpo-31324: Optimize support._match_test() (#4421) * Rename support._match_test() to support.match_test(): make it public * Remove support.match_tests global variable. It is replaced with a new support.set_match_tests() function, so match_test() doesn't have to check each time if patterns were modified. * Rewrite match_test(): use different code paths depending on the kind of patterns for best performances. Co-Authored-By: Serhiy Storchaka <storchaka@gmail.com> (cherry picked from commit 803ddd8ce22f0de3ab42fb98a225a704c000ef06) * bpo-31324: Fix test.support.set_match_tests(None) (#4505) (cherry picked from commit bb11c3c967afaf263e00844d4ab461b7fafd6d36) 23 November 2017, 16:42:04 UTC
4b30429 bpo-1102: View.Fetch() now returns None when it's exhausted (GH-4459) (cherry picked from commit bdb8315c21825487b54852ff0511fb4881ea2181) 23 November 2017, 14:33:12 UTC
ae3c5c7 [3.6] bpo-32100: IDLE: Fix pathbrowser errors; improve tests. (GH-4484) (#4512) Patch mostly by Cheryl Sabella. (cherry picked from commit 20d48a44a54ed5e4a6df00e89ae27e3983128265) 23 November 2017, 01:05:35 UTC
d7ed48c bpo-32105: add asyncio.BaseEventLoop.connect_accepted_socket versionadded to documentation. (GH-4491) (#4493) (cherry picked from commit 431665bf1971e66c51f59abf0693f700ff7919e8) 21 November 2017, 16:16:40 UTC
32b003a Add comment and improve variable name in roundrobin() (GH-4486) (#4487) (cherry picked from commit 337cbbace0a43f50fcd33ea4d3b7cb30733237db) 21 November 2017, 08:29:34 UTC
60a376c bpo-32050: Fix -x option documentation (GH-4475) (#4477) The line number in correct when using the -x option: Py_Main() uses ungetc() to not skip the first newline character. (cherry picked from commit c5a2071586f735d2a61d1756e7011cfbb6ce86c9) 20 November 2017, 16:16:08 UTC
b071a5e bpo-30904: Removed duplicated Host: header. (GH-4465) (#4468) (cherry picked from commit e96ba183c43ad6633b5d014b3dc57433e2802faf) 19 November 2017, 19:16:17 UTC
65dffe5 bpo-30989: Sort in TimedRotatingFileHandler only when needed. (GH-2812) (GH-4466) TimedRotatingFileHandler.getFilesToDelete() now sorts only when needed. (cherry picked from commit afad147b59fe84b12317f7340ddd2deeecb22321) 19 November 2017, 18:43:49 UTC
80baec5 Remove outdated .pyo reference from msilib docs (GH-4461) Since f299abdafa0f2b6eb7abae274861b19b361c96bc the remove_pyc() method no longer tries to remove .pyo files. (cherry picked from commit b56becb373f01c7e285f028bde640f0864d0240e) 19 November 2017, 10:11:48 UTC
2f1ccf5 Document parameters of BaseServer.finish_request() (GH-4445) (cherry picked from commit 7750bded92d908cbc422c57b97214f8eec615b0d) 19 November 2017, 07:41:19 UTC
c696119 bpo-31691: Specify where to find installer build instructions for Windows (#4427) 17 November 2017, 00:50:48 UTC
0a6158c bpo-31691: Specify where to find build instructions for the Windows installer (GH-4426) (#4431) (cherry picked from commit fd0fa67464f75cebca67cd14d050476a0c73bd53) 17 November 2017, 00:49:36 UTC
6cc476a Fix typo in atexit documentation. (GH-4419) (GH-4425) `kargs` -> `kwargs` (cherry picked from commit d505a29a15a6f9315d8c46445b8a0cccfc2048b8) 16 November 2017, 17:11:41 UTC
33217d2 bpo-31701: faulthandler: ignore MSC and COM Windows exception (#3929) (#4416) (cherry picked from commit 6e3d6b5dc22cd06d8c4d44a38a8a3415e4bebb16) 16 November 2017, 11:53:45 UTC
f35076a bpo-32034: Make IncompleteReadError & LimitOverrunError pickleable GH-4409 (#4411) (cherry picked from commit 43605e6bfa8d49612df4a38460d063d6ba781906) 16 November 2017, 00:28:25 UTC
d15bb5f bpo-32011: Revert "Issue GH-15480: Remove the deprecated and unused TYPE_INT64 code from marshal." (GH-4381) (#4405) Simplify the reverted code. This reverts commit e9bbe8b87ba2874efba0474af5cc7d5941dbf742. (cherry picked from commit 00987f6230fcdbecc8d9ab4b2b9fae8f99a1a4a9) 15 November 2017, 16:05:58 UTC
3864248 [3.6] bpo-31949: Fixed several issues in printing tracebacks (PyTraceBack_Print()). (GH-4289) (#4406) * Setting sys.tracebacklimit to 0 or less now suppresses printing tracebacks. * Setting sys.tracebacklimit to None now causes using the default limit. * Setting sys.tracebacklimit to an integer larger than LONG_MAX now means using the limit LONG_MAX rather than the default limit. * Fixed integer overflows in the case of more than 2**31 traceback items on Windows. * Fixed output errors handling.. (cherry picked from commit edad8eebeee3c99e324a7f1ac5073167c2b0b54d) 15 November 2017, 16:04:46 UTC
eb38367 bpo-32032: Test both implementations of module-level pickle API. (GH-4401) (#4403) (cherry picked from commit 6545256df93ba54f811206107274cfa5a6d76b86) 15 November 2017, 12:32:04 UTC
42336de bpo-31948: Fix broken links in msilib docs (GH-4397). (GH-4398) (cherry picked from commit 3bda02222aa3783bf85fc3ff8bc042aefd9c4fd3) 15 November 2017, 00:23:35 UTC
14c1fe6 bpo-15606: Improve the re.VERBOSE documentation. (GH-4366) (#4394) (cherry picked from commit b0b44b4b3337297007f5ef87220a75df204399f8) 14 November 2017, 15:38:50 UTC
cc0961c [3.6] bpo-32015: Asyncio looping during simultaneously socket read/write an… (GH-4386) (#4393) * bpo-32015: Asyncio cycling during simultaneously socket read/write and reconnection * Tests fix * Tests fix * News add * Add new unit tests. (cherry picked from commit e1d62e0b7cc842d6b75b4d480391f4a94e503255) 14 November 2017, 10:14:51 UTC
58cbae2 bpo-16055: Fixes incorrect error text for int('1', base=1000) (GH-4376) (#4389) (cherry picked from commit 28b624825eb92cb8c96fbf8da267d8d14a61a841) 14 November 2017, 09:35:13 UTC
18056fb bpo-32020: arraymodule: Correct missing Py_DECREF in failure case of make_array() (GH-4391) (#4392) (cherry picked from commit 56935a53b11b9a70f3e13e460777ec81a5b9195e) 14 November 2017, 07:01:29 UTC
6ed9d4e bpo-32013: _pickle: Add missing Py_DECREF in error case in fast_save_enter() (GH-4384) (#4385) (cherry picked from commit f76231f89a7231fd486b37f728fbb4aab389e4d7) 13 November 2017, 08:19:52 UTC
ad004f9 [3.6] bpo-28759: Skip some tests on PermissionError raised by Android (GH-4350) (#4380) (cherry picked from commit 92c2ca7633c881a56157f2fb8b2e1b8c7114e5fb) 12 November 2017, 17:18:36 UTC
ea5b545 [3.6] bpo-30696: Fix the REPL looping endlessly when no memory (GH-4160). (#4379) (cherry picked from commit e0582a37c8d1776a2fd4968e9216f3a05f780276) 12 November 2017, 16:33:16 UTC
4e09deb The termios man page is in section 3 (GH-2450) (cherry picked from commit e197a8538bae3c5f2727dfdc8672aa15d9429e51) 11 November 2017, 16:57:17 UTC
98ad985 Remove redundant 'exc = True' line (GH-4357) It can be removed after https://github.com/python/peps/commit/c28890fb421c906241da6da718f9eacc5a3109ee (cherry picked from commit 7c9da3e5ba060463b661da58ec3fe6beedce5566) 11 November 2017, 15:11:34 UTC
7abbddd bpo-31824: Document default value of 'errors' parameters (GH-4328) (cherry picked from commit e184cfd7bf8bcfd160e3b611d4351ca3ce52d9e2) 10 November 2017, 23:14:00 UTC
7997fa2 bpo-31999: Fix test_venv in case the zlib module is not available. (GH-4359) (#4360) (cherry picked from commit 5e0df74b3bc6391e9a7eba0fd84531ed99a78ae9) 10 November 2017, 10:56:59 UTC
b9a40ac bpo-31222: Make (datetime|date|time).replace return subclass type in Pure Python (GH-4176) (#4356) (cherry picked from commit 191e993365ac3206f46132dcf46236471ec54bfa) 10 November 2017, 00:52:05 UTC
596286f [3.6] bpo-31927: Fix bugs in socketmodule.c on NetBSD and other issues. (GH-4235) (#4352) * Fix compilation of the socket module on NetBSD 8. * Fix the assertion failure or reading arbitrary data when parse a AF_BLUETOOTH address on NetBSD and DragonFly BSD. * Fix other potential errors and make the code more reliable. (cherry picked from commit d3187158c09cf899e9849f335bdff10594209167) 09 November 2017, 19:40:29 UTC
7264676 Correct the location of a function mentioned in a comment (GH-4327) (cherry picked from commit 01ae58d44622a37304c74b2d8ed32e97a7fe1969) 09 November 2017, 17:14:38 UTC
0c4785b [3.6] bpo-31934: Abort when building out of a not clean source tree (GH-4255). (#4340) (cherry picked from commit 0de92859caf25e65fc968d4bb68626e9ba21b851) 08 November 2017, 15:54:07 UTC
ac4f6d4 bpo-31620: have asyncio/queues not leak memory when you've exceptions during waiting (GH-3813) (#4326) (cherry picked from commit c62f0cb3b1f6f9ca4ce463b1c99b0543bdfa38d6) 07 November 2017, 19:08:15 UTC
64f1049 bpo-31793: Doc: Specialize smart-quotes for Japanese (GH-4006) (cherry picked from commit 5a66c8a64d180b5f3c80307924adaec53cc8faa3) 07 November 2017, 16:55:08 UTC
d8d218f [3.6] bpo-31970: Reduce performance overhead of asyncio debug mode. (GH-4314) (#4322) * bpo-31970: Reduce performance overhead of asyncio debug mode.. (cherry picked from commit 921e9432a1461bbf312c9c6dcc2b916be6c05fa0) 07 November 2017, 16:50:48 UTC
518c6b9 bpo-31960: Fix asyncio.Future documentation for thread (un)safety. (GH-4319) (#4320) (cherry picked from commit 22b1128559bdeb96907da5840960691bb050d11a) 07 November 2017, 16:22:18 UTC
d9c61c2 bpo-31965: fix doc for multiprocessing.connection.Client and Listener (GH-4304) (#4321) * fix doc for multiprocessing.connection.Client The authenticate argument does not exist on either Client or Listener: - https://github.com/python/cpython/blob/master/Lib/multiprocessing/connection.pyGH-L483 (master) - https://github.com/python/cpython/blob/3.6/Lib/multiprocessing/connection.pyGH-L478 (3.6) - https://github.com/python/cpython/blob/3.5/Lib/multiprocessing/connection.pyGH-L478 (3.5) - https://github.com/python/cpython/blob/3.4/Lib/multiprocessing/connection.pyGH-L487 (3.4) The documentation also claimed that these functions will call `current_process().auth_key`, for which I could find no evidence in the code. I rewrote the documentation to reflect the actual behavior. Also made some small changes to vary sentence structure. (cherry picked from commit 1e5d54cfa031f1de9ee2d2e968e0551b6e2397b7) 07 November 2017, 16:20:24 UTC
a5dca7d Fix the sizeof test for dicts with shared keys. (GH-4311) (#4312) By accident the size of the empty dict keys object matched the size of values array. (cherry picked from commit 39a156c505b7dc431a0a4cffcbefca577848db38) 07 November 2017, 13:59:33 UTC
ef6f224 Fix a memory leak in _msi.c (GH-4127) (#4309) (cherry picked from commit cb04f7518292108d68e5ba4c685ca2bf2da18eab) 07 November 2017, 10:50:41 UTC
e65617f bpo-31950: Improve event loop policy doc (GH-4306) (#4307) (cherry picked from commit 4135c89395726024abddb7340a0c7a42c801f616) 07 November 2017, 09:34:47 UTC
b0331c9 bpo-31764: Prevent a crash in sqlite3.Cursor.close() in case the Cursor object is uninitialized (GH-3958) (#4303) (cherry picked from commit edb13ae48c17210fa4b2d40a6833ca09db5c121b) 07 November 2017, 00:45:19 UTC
9684cf6 bpo-31770: Prevent a crash and refleaks when calling sqlite3.Cursor.__init__() more than once (GH-3968) (#4301) (cherry picked from commit e56ab746a965277ffcc4396d8a0902b6e072d049) 07 November 2017, 00:44:23 UTC
a6ffec2 [3.6] bpo-31957: Fixes version detection. (GH-4298) (#4300) 06 November 2017, 23:04:58 UTC
646e4c8 [3.6] Fix miscellaneous typos in idlelib (GH-4275) (#4291) Manual partial backport of patch that fixed nearly 50 other files. 06 November 2017, 01:30:06 UTC
back to top