summaryrefslogtreecommitdiffstats
path: root/Doc
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28076: Variable annotations should be mangled for private names.Guido van Rossum2016-09-111-3/+4
| | | | By Ivan Levkivskyi.
* Closes #23105: Merged update from 3.5.Vinay Sajip2016-09-111-6/+6
|\
| * Issue #23105: Updated documentation on open() flag constants.Vinay Sajip2016-09-111-6/+6
| |
* | Issue 24454: Added whatsnew entry, removed __getitem__ from match_methods. ↵Eric V. Smith2016-09-111-0/+4
| | | | | | | | Thanks Serhiy Storchaka.
* | Fixed a markup in docs.Serhiy Storchaka2016-09-111-1/+1
| |
* | Issue 24454: Improve the usability of the re match object named group APIEric V. Smith2016-09-111-0/+16
| |
* | Issue #20100: Merge from 3.5Berker Peksag2016-09-111-3/+5
|\ \ | |/
| * Issue #20100: Clarify that passing flags to epoll() has no effectBerker Peksag2016-09-111-3/+5
| |
* | Closed #26533: Merged update from 3.5.Vinay Sajip2016-09-111-5/+14
|\ \ | |/
| * Closed #26533: expanded on behaviour of logging.config.listen().Vinay Sajip2016-09-111-5/+14
| |
* | Issue #27991: Merge from 3.5Berker Peksag2016-09-111-2/+2
|\ \ | |/
| * Issue #27991: Remove incorrect sentence about store_trueBerker Peksag2016-09-111-2/+2
| | | | | | | | Patch by py.user.
| * Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (Backport from the ↵Guido van Rossum2016-09-111-14/+113
| | | | | | | | 3.6 version)
* | Issue #10740: sqlite3 no longer implicitly commit an open transaction before ↵Berker Peksag2016-09-112-3/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-112-6/+11
| | | | | | | | | | 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-112-2/+23
| | | | | | | | 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-2/+1
| |
* | issue23591: add auto() for auto-generating Enum member valuesEthan Furman2016-09-111-16/+83
| |
* | Issue #26141: Update docs for typing.py. Ivan Levkivskyi.Guido van Rossum2016-09-111-10/+104
| |
* | Issue #28073: Improve wording around None. Michael Lee. (3.5->3.6)Guido van Rossum2016-09-111-2/+4
|\ \ | |/
| * Issue #28073: Improve wording around None. Michael Lee.Guido van Rossum2016-09-111-2/+4
| |
* | fix link to instrumentationBenjamin Peterson2016-09-111-1/+1
| |
* | reST is not markdownBenjamin Peterson2016-09-111-17/+17
| |
* | Issue #19500: Add client-side SSL session resumption to the ssl module.Christian Heimes2016-09-101-4/+47
| |
* | Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.Christian Heimes2016-09-107-9/+58
| | | | | | | | | | | | | | 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-1/+8
| | | | | | | | 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).
* | Issue #24693: Changed some RuntimeError's in the zipfile module to moreSerhiy Storchaka2016-09-101-15/+43
| | | | | | | | appropriate types. Improved some error messages and debugging output.
* | Merge spelling fixes from 3.5Martin Panter2016-09-101-2/+2
|\ \ | |/
| * Correct spelling in documentation and code commentMartin Panter2016-09-101-2/+2
| |
* | Issue #17909: Accept binary input in json.loadsNick Coghlan2016-09-102-2/+11
| | | | | | | | | | | | | | json.loads (and hence json.load) now support binary input encoded as UTF-8, UTF-16 or UTF-32. Patch by Serhiy Storchaka.
* | Fix Python version in pdb.rstBerker Peksag2016-09-101-2/+2
| |
* | Issue #18401: pdb tests don't read ~/.pdbrc anymoreŁukasz Langa2016-09-101-1/+7
| | | | | | | | Patch by Martin Matusiak and Sam Kimbrel.
* | #20476: Deal with the message_factory circular import differently.R David Murray2016-09-101-2/+2
| | | | | | | | | | | | | | It turns out we can't depend on email.message getting imported every place message_factory is needed, so to avoid a circular import we need to special case Policy.message_factory=None in the parser instead of using monkey patching. I had a feeling that was a bad idea when I did it.
* | Further improved ',' and '_' specification in format mini-language.Eric V. Smith2016-09-101-2/+2
| |
* | Improved ',' and '_' specification in format mini-language.Eric V. Smith2016-09-101-1/+2
| |
* | Issue 27080: PEP 515: add '_' formatting option.Eric V. Smith2016-09-101-1/+11
| |
* | Actually fix suspicious markup, I ignored it too readilyZachary Ware2016-09-102-2/+1
| |
* | DTrace support: function calls, GC activity, line executionŁukasz Langa2016-09-103-0/+437
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | Remove line numbers from suspicious rulesZachary Ware2016-09-101-16/+16
| |
* | Closes #27976: Deprecate bundled full copy of libffiZachary Ware2016-09-101-0/+10
| | | | | | | | | | Builds on non-OSX UNIX now default to using the system libffi, and warn if the bundled copy is used.
* | mergeRaymond Hettinger2016-09-091-5/+2
|\ \ | |/
| * Issue 14976: Note that the queue module is not designed to protect against ↵Raymond Hettinger2016-09-091-5/+2
| | | | | | | | reentrancy
* | We're not that far in the future yetZachary Ware2016-09-091-1/+1
| |
* | Fix suspicious markupZachary Ware2016-09-091-0/+4
| |
* | #20476: add a message_factory policy attribute to email.R David Murray2016-09-093-9/+29
| |
* | repair versionadded directiveBenjamin Peterson2016-09-091-1/+1
| |
* | Add links from whatsnew to Windows docs.Steve Dower2016-09-092-3/+6
| |
* | Issue #28025: Convert all ssl module constants to IntEnum and IntFlags.Christian Heimes2016-09-091-0/+51
| |
* | Merge headsSerhiy Storchaka2016-09-096-42/+90
|\ \
| * | Adds search path changes to whatsnew/3.6.rstSteve Dower2016-09-091-0/+5
| | |