summaryrefslogtreecommitdiffstats
path: root/Misc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28065: Update xz to 5.2.2 on Windows, and build it from sourceZachary Ware2016-09-121-0/+2
|
* Issue #28066: Merge srcdir fix from 3.5Martin Panter2016-09-121-0/+3
|\
| * Issue #28066: Fix include search directory logic for out-of-tree buildsMartin Panter2016-09-121-0/+3
| |
* | Merge 3.5 (issue #27456)Yury Selivanov2016-09-121-0/+2
|\ \ | |/
| * Issue #27456: asyncio: Set TCP_NODELAY by default.Yury Selivanov2016-09-121-0/+2
| |
| * #19003: Only replace \r and/or \n line endings in email.generator.R David Murray2016-09-111-0/+4
| | | | | | | | | | This is a further restoration of backward compatibility, as well as being correct per the RFCs.
* | Merge 3.5 (asyncio/NEWS)Yury Selivanov2016-09-121-0/+2
| |
* | Issue 24454: Improve the usability of the re match object named group APIEric V. Smith2016-09-111-0/+4
| |
* | Issue #27952: Merge fixcid.py from 3.5Martin Panter2016-09-111-0/+7
|\ \ | |/
| * Issue #27952: Get fixcid.py working with the re moduleMartin Panter2016-09-111-0/+4
| |
* | Issue #10740: sqlite3 no longer implicitly commit an open transaction before ↵Berker Peksag2016-09-111-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 theSerhiy Storchaka2016-09-111-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 usedSerhiy Storchaka2016-09-111-0/+3
| | | | | | | | by Apache XML-RPC implementation for numerics and None.
* | Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-111-0/+2
| |
* | Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-111-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 Storchaka2016-09-101-0/+2
| |
* | Issue #19500: Add client-side SSL session resumption to the ssl module.Christian Heimes2016-09-101-0/+2
| |
* | Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.Christian Heimes2016-09-101-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 settingsChristian Heimes2016-09-101-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.5Terry Jan Reedy2016-09-101-0/+17
|\ \ | |/
| * IDLE newx items.Terry Jan Reedy2016-09-101-0/+7
| |
* | Issue #25221: merge from 3.5.Mark Dickinson2016-09-101-0/+3
|\ \ | |/
| * Issue #25221: Fix corrupted result from PyLong_FromLong(0) when Python is ↵Mark Dickinson2016-09-101-0/+3
| | | | | | | | compiled with NSMALLPOSINTS = 0.
* | Merge from 3.5Steve Dower2016-09-101-2/+0
|\ \ | |/
| * Issue #27932: Backs out changeSteve Dower2016-09-101-2/+0
| |
* | Issue #24693: Changed some RuntimeError's in the zipfile module to moreSerhiy Storchaka2016-09-101-0/+3
| | | | | | | | appropriate types. Improved some error messages and debugging output.
* | Issue #17909: Accept binary input in json.loadsNick Coghlan2016-09-101-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.partialNick Coghlan2016-09-101-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 rangeSerhiy Storchaka2016-09-101-0/+3
|\ \ | |/ | | | | between 1.0 and 2.0 to 1.
| * Issue #28019: itertools.count() no longer rounds non-integer step in rangeSerhiy Storchaka2016-09-101-0/+3
| | | | | | | | between 1.0 and 2.0 to 1.
* | Issue #18401: pdb tests don't read ~/.pdbrc anymoreŁukasz Langa2016-09-101-0/+4
| | | | | | | | Patch by Martin Matusiak and Sam Kimbrel.
* | Issue 27080: PEP 515: add '_' formatting option.Eric V. Smith2016-09-101-0/+3
| |
* | Issue #27199: TarFile expose copyfileobj bufsize to improve throughputŁukasz Langa2016-09-101-0/+3
| | | | | | | | Patch by Jason Fried.
* | Issue 27948: Allow backslashes in the literal string portion of f-strings, ↵Eric V. Smith2016-09-101-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 Dower2016-09-101-0/+2
|\ \ | |/
| * Issue #27566: Fix clean target in freeze makefile (patch by Lisa Roach)Steve Dower2016-09-101-0/+2
| |
* | Issue #27705: Update message in validate_ucrtbase.pySteve Dower2016-09-101-0/+2
|\ \ | |/
| * Issue #27705: Update message in validate_ucrtbase.pySteve Dower2016-09-101-0/+2
| |
* | Issue #25969: Update the lib2to3 grammar to handle the unpackingGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-101-0/+3
|\ \ | |/ | | | | generalizations added in 3.5.
| * Issue #25969: Update the lib2to3 grammar to handle the unpackingGregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-101-0/+3
| | | | | | | | generalizations added in 3.5.
* | Merge from ZachSteve Dower2016-09-101-0/+2
|\ \
| * | Issue #28046: Remove platform-specific directories from sys.pathZachary Ware2016-09-101-0/+2
| | |
* | | Issue #27932: Fixes memory leak in platform.win32_ver()Steve Dower2016-09-101-0/+2
|\ \ \ | |/ / |/| / | |/
| * Issue #27932: Fixes memory leak in platform.win32_ver()Steve Dower2016-09-101-0/+2
| |
* | DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-102-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 Dower2016-09-101-0/+3
|\ \ | |/ | | | | (patch by Eryk Sun)
| * Issue #25758: Prevents zipimport from unnecessarily encoding a filename ↵Steve Dower2016-09-101-0/+3
| | | | | | | | (patch by Eryk Sun)
* | Merge: #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-102-0/+8
|\ \ | |/
| * #14977: Make mailcap respect the order of the lines in the mailcap file.R David Murray2016-09-102-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.requestRaymond Hettinger2016-09-091-0/+4
| |