summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Issue #22038: pyatomic.h now uses stdatomic.h or GCC built-in functions forVictor Stinner2015-01-096-3/+193
| | | | | atomic memory access if available. Patch written by Vitor de Lima and Gustavo Temple.
* Merge 3.4 (asyncio)Victor Stinner2015-01-093-7/+16
|\
| * asyncio: sync with TulipVictor Stinner2015-01-093-7/+16
| | | | | | | | | | | | | | | | * Document why set_result() calls are safe * Cleanup gather(). Use public methods instead of hacks to consume the exception of a future. * sock_connect(): pass directly the fd to _sock_connect_done instead of the socket.
* | Merge 3.4 (asyncio doc)Victor Stinner2015-01-092-0/+24
|\ \ | |/
| * asyncio doc: list limitations to run subprocesses from different threadsVictor Stinner2015-01-092-0/+24
| |
* | selectors: truncate to 80 charactersVictor Stinner2015-01-081-1/+2
| |
* | 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
| |
* | Issue #20487: Clarify meaning of "side effect" in the magic mock documentation.Berker Peksag2015-01-071-3/+4
|\ \ | |/ | | | | Patch by A.M. Kuchling.
| * Issue #20487: Clarify meaning of "side effect" in the magic mock documentation.Berker Peksag2015-01-071-3/+4
| | | | | | | | Patch by A.M. Kuchling.
* | 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
| |
* | use SSL_get_sessionBenjamin Peterson2015-01-071-2/+3
| |
* | explain None can be returnedBenjamin Peterson2015-01-071-1/+3
| |
* | expose the client's cipher suites from the handshake (closes #23186)Benjamin Peterson2015-01-075-21/+94
| |
* | Minor speed-up. Use local variable instead of a global lookup.Raymond Hettinger2015-01-071-10/+10
| |
* | Issue #19548: clean up merge issues in codecs docsNick Coghlan2015-01-071-3/+5
| | | | | | | | | | Patch by Martin Panter to clean up some problems with the merge of the codecs docs changes from Python 3.4.
* | Merge issue 19548 changes from 3.4Nick Coghlan2015-01-069-377/+424
|\ \ | |/
| * Issue 19548: update codecs module documentationNick Coghlan2015-01-069-363/+417
| | | | | | | | | | | | | | | | - 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 #23145: regrtest now shows errors and raises an exception ifVictor Stinner2015-01-061-0/+4
| | | | | | | | loader.loadTestsFromModule() logged errors.
* | Null merge 3.4 (changes already applied to Python 3.5)Victor Stinner2015-01-060-0/+0
|\ \ | |/
| * Issue #21356: Make ssl.RAND_egd() optional to support LibreSSL. TheVictor Stinner2015-01-067-3/+65
| | | | | | | | | | availability of the function is checked during the compilation. Patch written by Bernard Spil.
* | Issue #23177: Document that ssl.RAND_egd() is not available with LibreSSLVictor Stinner2015-01-061-0/+2
| |
* | Null merge python 3.4 (change already applied to Python 3.5)Victor Stinner2015-01-060-0/+0
|\ \ | |/
| * Issue #20896, #22935: The ssl.get_server_certificate() function now uses theVictor Stinner2015-01-062-1/+6
| | | | | | | | | | | | ssl.PROTOCOL_SSLv23 protocol by default, not ssl.PROTOCOL_SSLv3, for maximum compatibility and support platforms where ssl.PROTOCOL_SSLv3 support is disabled.
* | 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.
* | Merge with 3.4Zachary Ware2015-01-061-8/+10
|\ \ | |/
| * Cosmetic fixes to the 'Develop with asyncio' pageZachary Ware2015-01-061-8/+10
| |
* | mergeRaymond Hettinger2015-01-061-76/+81
|\ \ | |/
| * Issue #23132: Mitigate regression in speed and clarity in ↵Raymond Hettinger2015-01-062-64/+80
| | | | | | | | 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
|\ \ | |/