Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #28065: Update xz to 5.2.2 on Windows, and build it from source | Zachary Ware | 2016-09-12 | 1 | -0/+2 |
| | |||||
* | Issue #28066: Merge srcdir fix from 3.5 | Martin Panter | 2016-09-12 | 1 | -0/+3 |
|\ | |||||
| * | Issue #28066: Fix include search directory logic for out-of-tree builds | Martin Panter | 2016-09-12 | 1 | -0/+3 |
| | | |||||
* | | Merge 3.5 (issue #27456) | Yury Selivanov | 2016-09-12 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #27456: asyncio: Set TCP_NODELAY by default. | Yury Selivanov | 2016-09-12 | 1 | -0/+2 |
| | | |||||
| * | #19003: Only replace \r and/or \n line endings in email.generator. | R David Murray | 2016-09-11 | 1 | -0/+4 |
| | | | | | | | | | | This is a further restoration of backward compatibility, as well as being correct per the RFCs. | ||||
* | | Merge 3.5 (asyncio/NEWS) | Yury Selivanov | 2016-09-12 | 1 | -0/+2 |
| | | |||||
* | | Issue 24454: Improve the usability of the re match object named group API | Eric V. Smith | 2016-09-11 | 1 | -0/+4 |
| | | |||||
* | | Issue #27952: Merge fixcid.py from 3.5 | Martin Panter | 2016-09-11 | 1 | -0/+7 |
|\ \ | |/ | |||||
| * | Issue #27952: Get fixcid.py working with the re module | Martin Panter | 2016-09-11 | 1 | -0/+4 |
| | | |||||
* | | Issue #10740: sqlite3 no longer implicitly commit an open transaction before ↵ | Berker Peksag | 2016-09-11 | 1 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | DDL statements This commit contains the following commits from ghaering/pysqlite: * https://github.com/ghaering/pysqlite/commit/f254c534948c41c0ceb8cbabf0d4a2f547754739 * https://github.com/ghaering/pysqlite/commit/796b3afe38cfdac5d7d5ec260826b0a596554631 * https://github.com/ghaering/pysqlite/commit/cae87ee68613697a5f4947b4a0941f59a28da1b6 * https://github.com/ghaering/pysqlite/commit/3567b31bb5e5b226ba006213a9c69dde3f155faf With the following additions: * Fixed a refcount error * Fixed a compiler warning * Made the string comparison a little more robust * Added a whatsnew entry | ||||
* | | Issue #22493: Inline flags now should be used only at the start of the | Serhiy Storchaka | 2016-09-11 | 1 | -0/+4 |
| | | | | | | | | | | regular expression. Deprecation warning is emitted if uses them in the middle of the regular expression. | ||||
* | | Issue #26885: xmlrpc now supports unmarshalling additional data types used | Serhiy Storchaka | 2016-09-11 | 1 | -0/+3 |
| | | | | | | | | by Apache XML-RPC implementation for numerics and None. | ||||
* | | Issue #26900: Excluded underscored names and other private API from limited API. | Serhiy Storchaka | 2016-09-11 | 1 | -0/+2 |
| | | |||||
* | | Issue #23722: Initialize __class__ from type.__new__() | Nick Coghlan | 2016-09-11 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | | | The __class__ cell used by zero-argument super() is now initialized from type.__new__ rather than __build_class__, so class methods relying on that will now work correctly when called from metaclass methods during class creation. Patch by Martin Teichmann. | ||||
* | | Issue #28070: Fixed parsing inline verbose flag in regular expressions. | Serhiy Storchaka | 2016-09-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #19500: Add client-side SSL session resumption to the ssl module. | Christian Heimes | 2016-09-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #28022: Deprecate ssl-related arguments in favor of SSLContext. | Christian Heimes | 2016-09-10 | 1 | -1/+5 |
| | | | | | | | | | | | | | | The deprecation include manual creation of SSLSocket and certfile/keyfile (or similar) in ftplib, httplib, imaplib, smtplib, poplib and urllib. ssl.wrap_socket() is not marked as deprecated yet. | ||||
* | | Issue 28043: SSLContext has improved default settings | Christian Heimes | 2016-09-10 | 1 | -0/+4 |
| | | | | | | | | The options OP_NO_COMPRESSION, OP_CIPHER_SERVER_PREFERENCE, OP_SINGLE_DH_USE, OP_SINGLE_ECDH_USE, OP_NO_SSLv2 (except for PROTOCOL_SSLv2), and OP_NO_SSLv3 (except for PROTOCOL_SSLv3) are set by default. The initial cipher suite list contains only HIGH ciphers, no NULL ciphers and MD5 ciphers (except for PROTOCOL_SSLv2). | ||||
* | | IDLE newx items. merge from 3.5 | Terry Jan Reedy | 2016-09-10 | 1 | -0/+17 |
|\ \ | |/ | |||||
| * | IDLE newx items. | Terry Jan Reedy | 2016-09-10 | 1 | -0/+7 |
| | | |||||
* | | Issue #25221: merge from 3.5. | Mark Dickinson | 2016-09-10 | 1 | -0/+3 |
|\ \ | |/ | |||||
| * | Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is ↵ | Mark Dickinson | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | compiled with NSMALLPOSINTS = 0. | ||||
* | | Merge from 3.5 | Steve Dower | 2016-09-10 | 1 | -2/+0 |
|\ \ | |/ | |||||
| * | Issue #27932: Backs out change | Steve Dower | 2016-09-10 | 1 | -2/+0 |
| | | |||||
* | | Issue #24693: Changed some RuntimeError's in the zipfile module to more | Serhiy Storchaka | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | appropriate types. Improved some error messages and debugging output. | ||||
* | | Issue #17909: Accept binary input in json.loads | Nick Coghlan | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | | | | | | | json.loads (and hence json.load) now support binary input encoded as UTF-8, UTF-16 or UTF-32. Patch by Serhiy Storchaka. | ||||
* | | Issue #27137: align Python & C implementations of functools.partial | Nick Coghlan | 2016-09-10 | 1 | -0/+5 |
| | | | | | | | | | | | | | | | | The pure Python fallback implementation of functools.partial now matches the behaviour of its accelerated C counterpart for subclassing, pickling and text representation purposes. Patch by Emanuel Barry and Serhiy Storchaka. | ||||
* | | Issue #28019: itertools.count() no longer rounds non-integer step in range | Serhiy Storchaka | 2016-09-10 | 1 | -0/+3 |
|\ \ | |/ | | | | | between 1.0 and 2.0 to 1. | ||||
| * | Issue #28019: itertools.count() no longer rounds non-integer step in range | Serhiy Storchaka | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | between 1.0 and 2.0 to 1. | ||||
* | | Issue #18401: pdb tests don't read ~/.pdbrc anymore | Łukasz Langa | 2016-09-10 | 1 | -0/+4 |
| | | | | | | | | Patch by Martin Matusiak and Sam Kimbrel. | ||||
* | | Issue 27080: PEP 515: add '_' formatting option. | Eric V. Smith | 2016-09-10 | 1 | -0/+3 |
| | | |||||
* | | Issue #27199: TarFile expose copyfileobj bufsize to improve throughput | Łukasz Langa | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | Patch by Jason Fried. | ||||
* | | Issue 27948: Allow backslashes in the literal string portion of f-strings, ↵ | Eric V. Smith | 2016-09-10 | 1 | -5/+7 |
| | | | | | | | | but not in the expressions. Also, require expressions to begin and end with literal curly braces. | ||||
* | | Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) | Steve Dower | 2016-09-10 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach) | Steve Dower | 2016-09-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #27705: Update message in validate_ucrtbase.py | Steve Dower | 2016-09-10 | 1 | -0/+2 |
|\ \ | |/ | |||||
| * | Issue #27705: Update message in validate_ucrtbase.py | Steve Dower | 2016-09-10 | 1 | -0/+2 |
| | | |||||
* | | Issue #25969: Update the lib2to3 grammar to handle the unpacking | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-09-10 | 1 | -0/+3 |
|\ \ | |/ | | | | | generalizations added in 3.5. | ||||
| * | Issue #25969: Update the lib2to3 grammar to handle the unpacking | Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D) | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | generalizations added in 3.5. | ||||
* | | Merge from Zach | Steve Dower | 2016-09-10 | 1 | -0/+2 |
|\ \ | |||||
| * | | Issue #28046: Remove platform-specific directories from sys.path | Zachary Ware | 2016-09-10 | 1 | -0/+2 |
| | | | |||||
* | | | Issue #27932: Fixes memory leak in platform.win32_ver() | Steve Dower | 2016-09-10 | 1 | -0/+2 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | Issue #27932: Fixes memory leak in platform.win32_ver() | Steve Dower | 2016-09-10 | 1 | -0/+2 |
| | | |||||
* | | DTrace support: function calls, GC activity, line execution | Łukasz Langa | 2016-09-10 | 2 | -0/+3 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Tested on macOS 10.11 dtrace, Ubuntu 16.04 SystemTap, and libbcc. Largely based by an initial patch by Jesús Cea Avión, with some influence from Dave Malcolm's SystemTap patch and Nikhil Benesch's unification patch. Things deliberately left out for simplicity: - ustack helpers, I have no way of testing them at this point since they are Solaris-specific - PyFrameObject * in function__entry/function__return, this is SystemTap-specific - SPARC support - dynamic tracing - sys module dtrace facility introspection All of those might be added later. | ||||
* | | Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵ | Steve Dower | 2016-09-10 | 1 | -0/+3 |
|\ \ | |/ | | | | | (patch by Eryk Sun) | ||||
| * | Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵ | Steve Dower | 2016-09-10 | 1 | -0/+3 |
| | | | | | | | | (patch by Eryk Sun) | ||||
* | | Merge: #14977: Make mailcap respect the order of the lines in the mailcap file. | R David Murray | 2016-09-10 | 2 | -0/+8 |
|\ \ | |/ | |||||
| * | #14977: Make mailcap respect the order of the lines in the mailcap file. | R David Murray | 2016-09-10 | 2 | -0/+4 |
| | | | | | | | | | | This is required by RFC 1542, so despite the subtle behavior change we are treating it as a bug. Patch by Michael Lazar. | ||||
| * | Issue #22450: Use "Accept: */*" in the default headers for urllib.request | Raymond Hettinger | 2016-09-09 | 1 | -0/+4 |
| | |