summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | | | Issue #28036: Remove unused pysqlite_flush_statement_cache functionBerker Peksag2016-09-111-20/+0
| | | |
* | | | Unskip testPythonOrg in test_robotparserBerker Peksag2016-09-111-2/+1
| | | | | | | | | | | | | | | | We should probably use pythontest.net for this.
* | | | Fixed refactoring bug in dd046963bd42 (issue27129).Serhiy Storchaka2016-09-111-1/+1
| | | |
* | | | Wrap testPasswordProtectedSite with @reap_threadsBerker Peksag2016-09-111-0/+1
| | | |
* | | | 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
| | | |
* | | | Merged upstream changes.Vinay Sajip2016-09-111-220/+139
|\ \ \ \
| * | | | Issue #25497: Rewrite test_robotparser to use a class based designBerker Peksag2016-09-111-220/+139
| | | | |
* | | | | Closes #25671: Merged fix from 3.5.Vinay Sajip2016-09-111-19/+20
|\ \ \ \ \ | |/ / / / |/| / / / | |/ / /
| * | | Fixes #25671: Updated prompt handling in activate.fish.Vinay Sajip2016-09-111-19/+20
| | | |
* | | | Use uint16_t instead of short in audioop.Serhiy Storchaka2016-09-111-14/+14
| | | |
* | | | Use sequence repetition instead of bytes constructor with integer argument.Serhiy Storchaka2016-09-1112-20/+20
| | | |
* | | | Issue #27129: Replaced wordcode related magic constants with macros.Serhiy Storchaka2016-09-117-158/+173
| | | |
* | | | Issue #27952: Merge fixcid.py from 3.5Martin Panter2016-09-113-25/+125
|\ \ \ \ | |/ / /
| * | | Issue #27952: Get fixcid.py working with the re moduleMartin Panter2016-09-113-25/+122
| | | |
* | | | 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 #10740: sqlite3 no longer implicitly commit an open transaction before ↵Berker Peksag2016-09-118-116/+83
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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-1112-34/+58
| | | | | | | | | | | | | | | | | | | | 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-115-8/+101
| | | | | | | | | | | | | | | | by Apache XML-RPC implementation for numerics and None.
* | | | Issue #26900: Excluded underscored names and other private API from limited API.Serhiy Storchaka2016-09-1121-15/+74
| | | |
* | | | issue23591: add auto() for auto-generating Enum member valuesEthan Furman2016-09-113-31/+195
| | | |
* | | | Issue #23722: Initialize __class__ from type.__new__()Nick Coghlan2016-09-118-1258/+1358
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | Remove the debug print that i accidentally left in.Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-111-1/+0
|\ \ \ \ | |/ / /
| * | | Remove the debug print that i accidentally left in.Gregory P. Smith ext:(%20%5BGoogle%20Inc.%5D)2016-09-111-1/+0
| | | |
* | | | Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (null merge 3.5->3.6)Guido van Rossum2016-09-110-0/+0
|\ \ \ \ | |/ / /
| * | | Issue #26141: Update docs for typing.py. Ivan Levkivskyi. (Backport from the ↵Guido van Rossum2016-09-111-14/+113
| | | | | | | | | | | | | | | | 3.6 version)
* | | | 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
| | | |
* | | | Backed out changeset 8460a729e1deBenjamin Peterson2016-09-112-15/+3
| | | |
* | | | force gcc to use c99 inline semanticsBenjamin Peterson2016-09-112-3/+15
| | | |
* | | | fix link to instrumentationBenjamin Peterson2016-09-111-1/+1
| | | |
* | | | add the usual extern C silliness to pydtrace.hBenjamin Peterson2016-09-111-0/+6
| | | |
* | | | reST is not markdownBenjamin Peterson2016-09-111-17/+17
| | | |
* | | | Backed out changeset 3934e070c9dbBenjamin Peterson2016-09-111-2/+1
| | | |
* | | | Null mergeSerhiy Storchaka2016-09-100-0/+0
|\ \ \ \ | |/ / /
| * | | Backported tests for issue #28070.Serhiy Storchaka2016-09-101-0/+3
| | | |
* | | | Issue #28070: Fixed parsing inline verbose flag in regular expressions.Serhiy Storchaka2016-09-103-0/+6
| | | |
* | | | Issue #19500: Add client-side SSL session resumption to the ssl module.Christian Heimes2016-09-105-20/+582
| | | |
* | | | Issue #28022: Deprecate ssl-related arguments in favor of SSLContext.Christian Heimes2016-09-1023-85/+189
| | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* | | | #28067: Fixed another typo.Alexander Belopolsky2016-09-101-1/+1
| | | |
* | | | Issue 28043: SSLContext has improved default settingsChristian Heimes2016-09-105-54/+82
| | | | | | | | | | | | | | | | 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-102-1/+32
|\ \ \ \ | |/ / /
| * | | IDLE newx items.Terry Jan Reedy2016-09-102-0/+14
| | | |
* | | | #28067: Fixed a typo.Alexander Belopolsky2016-09-101-1/+1
| | | |
* | | | Closes #28067: Do not call localtime (gmtime) in datetime module.Alexander Belopolsky2016-09-101-42/+60
| | | |
* | | | Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd filesSteve Dower2016-09-101-2/+3
|\ \ \ \ | |/ / /
| * | | Closes #28059: Fixes test_platform to set PYTHONPATH for .pyd filesSteve Dower2016-09-101-2/+9
| | | |
* | | | Issue #25221: merge from 3.5.Mark Dickinson2016-09-102-1/+5
|\ \ \ \ | |/ / /