summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Release bump for 3.5.0a1.Larry Hastings2015-02-082-2/+2
|
* Updated pydoc topics data for 3.5.0a1 release.Larry Hastings2015-02-071-78/+78
|
* Fix whitespace.Charles-François Natali2015-02-071-1/+1
|
* Issue #23285: PEP 475 -- Retry system calls failing with EINTR.Charles-François Natali2015-02-0713-214/+300
|
* Issue #23399: pyvenv creates relative symlinks where possible.Barry Warsaw2015-02-061-6/+8
|\
| * Issue #23399: pyvenv creates relative symlinks where possible.Barry Warsaw2015-02-061-6/+8
| |
* | Issue #20289: cgi.FieldStorage() now supports the context management protocol.Berker Peksag2015-02-062-6/+19
| |
* | Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-12/+87
|\ \ | |/
| * Issue #23392: Added tests for marshal C API that works with FILE*.Serhiy Storchaka2015-02-061-12/+87
| |
* | Issue #23881: Only use entry-values with gdb 7.4 in tests.Serhiy Storchaka2015-02-061-8/+10
|\ \ | |/ | | | | Fixes a regression in issue #22765. Patch by Vinson Lee.
| * Issue #23881: Only use entry-values with gdb 7.4 in tests.Serhiy Storchaka2015-02-061-8/+10
| | | | | | | | Fixes a regression in issue #22765. Patch by Vinson Lee.
* | merge 3.4 (#22735)Benjamin Peterson2015-02-061-1/+226
|\ \ | |/
| * fix many custom mro() edge cases and improve code quality (#22735)Benjamin Peterson2015-02-061-1/+226
| | | | | | | | Patch by Eldar Abusalimov.
* | (Merge 3.4) test_multiprocessing: tolerate a delta of 30 ms because of badVictor Stinner2015-02-051-2/+4
|\ \ | |/ | | | | clock resolution on Windows
| * test_multiprocessing: tolerate a delta of 30 ms because of bad clock resolutionVictor Stinner2015-02-051-2/+4
| | | | | | | | on Windows
* | Issue #18982: Add tests for CLI of the calendar module.Serhiy Storchaka2015-02-051-25/+130
|\ \ | |/
| * Issue #18982: Add tests for CLI of the calendar module.Serhiy Storchaka2015-02-051-25/+130
| |
* | Merge 3.4 (asyncio)Victor Stinner2015-02-051-6/+6
|\ \ | |/
| * asyncio: BaseEventLoop: rename _owner to _thread_idVictor Stinner2015-02-051-6/+6
| |
* | Issue #23345: merge from 3.4Ned Deily2015-02-051-1/+1
|\ \ | |/
| * Issue #23345: Prevent test_ssl failures with large OpenSSL patch levelNed Deily2015-02-051-1/+1
| | | | | | | | values (like 0.9.8zc).
* | Merge: Update pip to 6.0.8Donald Stufft2015-02-052-1/+1
|\ \ | |/
| * Update pip to 6.0.8Donald Stufft2015-02-052-1/+1
| |
* | Make the stdlib test suite helper test.script_helper._assert_python no longerGregory P. Smith2015-02-052-2/+36
|\ \ | |/ | | | | | | pass -I or -E to the child process by default when the environment is required for the child process interpreter to function properly.
| * Make the stdlib test suite helper test.script_helper._assert_python no longerGregory P. Smith2015-02-052-2/+36
| | | | | | | | | | pass -I or -E to the child process by default when the environment is required for the child process interpreter to function properly.
* | Merge 3.4 (asyncio)Victor Stinner2015-02-044-23/+45
|\ \ | |/
| * asyncio: Only call _check_resolved_address() in debug modeVictor Stinner2015-02-044-18/+40
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * _check_resolved_address() is implemented with getaddrinfo() which is slow * If available, use socket.inet_pton() instead of socket.getaddrinfo(), because it is much faster Microbenchmark (timeit) on Fedora 21 (Python 3.4, Linux 3.17, glibc 2.20) to validate the IPV4 address "127.0.0.1" or the IPv6 address "::1": * getaddrinfo() 10.4 usec per loop * inet_pton(): 0.285 usec per loop On glibc older than 2.14, getaddrinfo() always requests the list of all local IP addresses to the kernel (using a NETLINK socket). getaddrinfo() has other known issues, it's better to avoid it when it is possible.
| * asyncio: BaseSelectorEventLoop uses directly the private _debug attributeVictor Stinner2015-02-041-5/+5
| | | | | | | | | | Just try to be consistent: _debug was already used in some places, and always used in BaseProactorEventLoop.
* | Skip some tests that require a subinterpreter launched with -E or -I when theGregory P. Smith2015-02-044-2/+82
|\ \ | |/ | | | | | | | | | | | | interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a test.script_helper.interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this.
| * Skip some tests that require a subinterpreter launched with -E or -I when theGregory P. Smith2015-02-044-2/+82
| | | | | | | | | | | | | | | | interpreter under test is being run in an environment that requires the use of environment variables such as PYTHONHOME in order to function at all. Adds a private test.script_helper._interpreter_requires_environment() function to be used with @unittest.skipIf on stdlib test methods requiring this.
* | Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer()Stefan Krah2015-02-032-0/+9
| | | | | | | | and array_buffer_getbuf().
* | Merge 3.4 (asyncio doc)Victor Stinner2015-02-031-2/+6
|\ \ | |/
| * asyncio, Tulip issue 221: Fix doc of QueueEmpty and QueueFullVictor Stinner2015-02-031-2/+6
| |
* | Issue #13128: Print response headers for CONNECT requests when debuglevel > 0.Berker Peksag2015-02-032-5/+21
| | | | | | | | Patch by Demian Brecht.
* | Issue #23358: Add missing BaseServer entry to socketserver.__all__.Berker Peksag2015-02-032-11/+16
|\ \ | |/ | | | | Patch by Martin Panter.
| * Issue #23358: Add missing BaseServer entry to socketserver.__all__.Berker Peksag2015-02-032-11/+16
| | | | | | | | Patch by Martin Panter.
* | Issue #15381: Optimized io.BytesIO to make less allocations and copyings.Serhiy Storchaka2015-02-031-3/+2
| |
* | Issue #22818: Splitting on a pattern that could match an empty string nowSerhiy Storchaka2015-02-032-14/+35
| | | | | | | | | | raises a warning. Patterns that can only match empty strings are now rejected.
* | Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-032-1/+12
|\ \ | |/ | | | | prevent corrupting exported buffer.
| * Issue #23099: Closing io.BytesIO with exported buffer is rejected now toSerhiy Storchaka2015-02-032-1/+12
| | | | | | | | prevent corrupting exported buffer.
* | Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-7/+5
|\ \ | |/ | | | | Used PyMem_New to check overflow.
| * Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-7/+5
| |\ | | | | | | | | | Used PyMem_New to check overflow.
| | * Issues #23363, #23364, #23365, #23366: Fixed itertools overflow tests.Serhiy Storchaka2015-02-021-7/+5
| | | | | | | | | | | | Used PyMem_New to check overflow.
* | | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-17/+33
|\ \ \ | |/ / | | | | | | and PyObject_AsWriteBuffer().
| * | Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer()Serhiy Storchaka2015-02-021-17/+33
| | | | | | | | | | | | and PyObject_AsWriteBuffer().
* | | merge 3.4Benjamin Peterson2015-02-021-1/+2
|\ \ \ | |/ /
| * | merge 3.3Benjamin Peterson2015-02-021-1/+2
| |\ \ | | |/
| | * reduce memory usage of test (closes #23369)Benjamin Peterson2015-02-021-1/+2
| | |
* | | merge 3.4Benjamin Peterson2015-02-021-1/+1
|\ \ \ | |/ /
| * | adjust for py3k module renamingBenjamin Peterson2015-02-021-1/+1
| | |