summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge 3.4 (asyncio)Victor Stinner2015-01-0812-33/+60
|\
| * asyncio: Truncate to 80 columnsVictor Stinner2015-01-0812-33/+60
| |
* | Merge 3.4 (asyncio)Victor Stinner2015-01-082-3/+3
|\ \ | |/
| * asyncio: _make_ssl_transport: make the waiter parameter optionalVictor Stinner2015-01-082-3/+3
| |
* | Merge with 3.4Terry Jan Reedy2015-01-081-31/+0
|\ \ | |/
| * Issue #23184: delete unused idlelib file.Terry Jan Reedy2015-01-081-31/+0
| |
* | enable cert validation in testBenjamin Peterson2015-01-081-1/+4
| |
* | trying againBenjamin Peterson2015-01-081-2/+2
| |
* | reorder cipher prefsBenjamin Peterson2015-01-081-1/+1
| |
* | drop 256Benjamin Peterson2015-01-081-2/+2
| |
* | try using AES256Benjamin Peterson2015-01-081-3/+3
| |
* | fix assertions after ciphers were changedBenjamin Peterson2015-01-071-2/+1
| |
* | rc4 is a long time favoriteBenjamin Peterson2015-01-071-2/+2
| |
* | everyone should support AES ciphersBenjamin Peterson2015-01-071-3/+4
| |
* | include some more ciphersBenjamin Peterson2015-01-071-3/+3
| |
* | force test server to speak tlsv1Benjamin Peterson2015-01-071-1/+1
| |
* | remove apparently wrong assertion about des bit sizeBenjamin Peterson2015-01-071-1/+0
| |
* | explain None can be returnedBenjamin Peterson2015-01-071-1/+3
| |
* | expose the client's cipher suites from the handshake (closes #23186)Benjamin Peterson2015-01-072-0/+27
| |
* | Minor speed-up. Use local variable instead of a global lookup.Raymond Hettinger2015-01-071-10/+10
| |
* | Merge issue 19548 changes from 3.4Nick Coghlan2015-01-062-50/+67
|\ \ | |/
| * Issue 19548: update codecs module documentationNick Coghlan2015-01-062-50/+67
| | | | | | | | | | | | | | | | - clarified the distinction between text encodings and other codecs - clarified relationship with builtin open and the io module - consolidated documentation of error handlers into one section - clarified type constraints of some behaviours - added tests for some of the new statements in the docs
| * Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-062-3/+9
| | | | | | | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
| * Issue #20896, #22935: The ssl.get_server_certificate() function now uses theVictor Stinner2015-01-061-1/+1
| | | | | | | | | | | | ssl.PROTOCOL_SSLv23 protocol by default, not ssl.PROTOCOL_SSLv3, for maximum compatibility and support platforms where ssl.PROTOCOL_SSLv3 support is disabled.
* | Issue #23145: regrtest now shows errors and raises an exception ifVictor Stinner2015-01-061-0/+4
| | | | | | | | loader.loadTestsFromModule() logged errors.
* | Closes #21980: Added a __repr__ for LogRecord.Vinay Sajip2015-01-061-2/+4
| |
* | Closes #23151: Removed unnecessary initialization.Vinay Sajip2015-01-061-2/+0
| |
* | test_ssl: add more debug to investigate test_openssl_version() failure onVictor Stinner2015-01-061-2/+2
| | | | | | | | OpenBSD with LibreSSL.
* | mergeRaymond Hettinger2015-01-061-76/+81
|\ \ | |/
| * Issue #23132: Mitigate regression in speed and clarity in ↵Raymond Hettinger2015-01-061-64/+78
| | | | | | | | functools.total_ordering.
* | Merge 3.4 (asyncio)Victor Stinner2015-01-061-8/+6
|\ \ | |/
| * Issue #23140, asyncio: Simplify the unit testVictor Stinner2015-01-061-8/+6
| |
* | Merge 3.4 (asyncio)Victor Stinner2015-01-062-1/+30
|\ \ | |/
| * Issue #23140, asyncio: Fix cancellation of Process.wait(). Check the state ofVictor Stinner2015-01-062-1/+30
| | | | | | | | the waiter future before setting its result.
* | Merge 3.4 (asyncio)Victor Stinner2015-01-062-2/+4
|\ \ | |/
| * Issue #23046: Expose the BaseEventLoop class in the asyncio namespaceVictor Stinner2015-01-062-2/+4
| |
* | Issue #22165: merge from 3.4Ned Deily2015-01-051-0/+1
|\ \ | |/
| * Issue #22165: Skip test_undecodable_filename on OS X prior to 10.5.Ned Deily2015-01-051-0/+1
| | | | | | | | 10.4 systems do not allow creation of files with such filenames.
* | Issue #18644: Fix a ResourceWarning in formatter.test().Berker Peksag2015-01-051-5/+9
|\ \ | |/ | | | | Patch by Vajrasky Kok.
| * Issue #18644: Fix a ResourceWarning in formatter.test().Berker Peksag2015-01-051-5/+9
| | | | | | | | Patch by Vajrasky Kok.
* | fix issue23157 - time_hashlib hadn't been ported to Python 3.Gregory P. Smith2015-01-041-3/+4
|\ \ | |/
| * fix issue23157 - time_hashlib hadn't been ported to Python 3.Gregory P. Smith2015-01-041-3/+4
| |
* | Update bundled pip and setuptools to 6.0.6 and 11.0.Donald Stufft2015-01-033-2/+2
|\ \ | |/
| * Upgrade the bundled pip to 6.0.6 and the bundled setuptools to 11.0Donald Stufft2015-01-033-2/+2
| |
* | Issue #23132: Improve performance and introspection support of comparisonSerhiy Storchaka2015-01-012-41/+68
| | | | | | | | methods created by functool.total_ordering.
* | merge 3.4 (#23111)Benjamin Peterson2014-12-301-2/+2
|\ \ | |/
| * make PROTOCOL_SSLv23 the default protocol version for ftplib (closes #23111)Benjamin Peterson2014-12-301-2/+2
| |
* | whitespaceAntoine Pitrou2014-12-301-5/+5
| |
* | Issue #19776: Add a expanduser() method on Path objects.Antoine Pitrou2014-12-302-0/+166
| | | | | | | | Patch by Serhiy.
* | Merge 3.4 (asyncio)Victor Stinner2014-12-2612-84/+105
|\ \ | |/