summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* only support append_history if readline has itBenjamin Peterson2014-11-265-0/+56
|
* fix variable nameBenjamin Peterson2014-11-261-1/+1
|
* add readline.append_history_file (closes #22940)Benjamin Peterson2014-11-264-2/+106
| | | | patch by "bru"
* Issue #19676: Fixed integer overflow issue in "namereplace" error handler.Serhiy Storchaka2014-11-261-5/+11
|
* merge 3.4Benjamin Peterson2014-11-262-0/+13
|\
| * handle errors without a reason attributeBenjamin Peterson2014-11-251-1/+1
| |
| * don't fail tests when www.python.org can't be validated by the systemBenjamin Peterson2014-11-252-0/+13
| |
* | Issue #19676: Tweak documentation a bit.Berker Peksag2014-11-252-3/+5
| | | | | | | | | | | | * Updated version info to 3.5 * Fixed a markup error * Added a versionadded directive to namereplace_errors documentation
* | (Merge 3.4) Closes #22685, asyncio: Set the transport of stdout and stderrVictor Stinner2014-11-252-5/+44
|\ \ | |/ | | | | | | StreamReader objects in the SubprocessStreamProtocol. It allows to pause the transport to not buffer too much stdout or stderr data.
| * Closes #22685, asyncio: Set the transport of stdout and stderr StreamReaderVictor Stinner2014-11-252-5/+44
| | | | | | | | | | objects in the SubprocessStreamProtocol. It allows to pause the transport to not buffer too much stdout or stderr data.
* | Issue #19676: Added the "namereplace" error handler.Serhiy Storchaka2014-11-2511-7/+255
| |
* | Issue #20351: Add examples for csv.DictReader and csv.DictWriter.Berker Peksag2014-11-241-0/+25
|\ \ | |/ | | | | Patch by Charles-Axel Dein.
| * Issue #20351: Add examples for csv.DictReader and csv.DictWriter.Berker Peksag2014-11-241-0/+25
| | | | | | | | Patch by Charles-Axel Dein.
* | Issue #22934: Update the comment to mention Programs/_freeze_importlib.c.Berker Peksag2014-11-242-2/+2
| |
* | update versionchangedBenjamin Peterson2014-11-241-1/+1
| |
* | merge 3.4 (#22788)Benjamin Peterson2014-11-244-21/+24
|\ \ | |/
| * add context parameter to HTTPHandler (closes #22788)Benjamin Peterson2014-11-244-21/+24
| |
* | merge 3.4Benjamin Peterson2014-11-241-0/+3
|\ \ | |/
| * add NEWS note for #22921Benjamin Peterson2014-11-241-0/+3
| |
* | merge 3.4 (null)Benjamin Peterson2014-11-240-0/+0
|\ \ | |/
| * correct versionchanged versionBenjamin Peterson2014-11-241-1/+1
| |
* | merge 3.4 (#22921)Benjamin Peterson2014-11-2316-79/+24
|\ \ | |/
| * don't require OpenSSL SNI to pass hostname to ssl functions (#22921)Benjamin Peterson2014-11-2316-67/+22
| | | | | | | | Patch by Donald Stufft.
* | merge 3.4Benjamin Peterson2014-11-231-4/+1
|\ \ | |/
| * document that cadefault does nothing nowBenjamin Peterson2014-11-231-4/+1
| |
* | Update importlib.hAntoine Pitrou2014-11-231-430/+430
| |
* | Issue #22894: TestCase.subTest() would cause the test suite to be stopped ↵Antoine Pitrou2014-11-233-1/+33
|\ \ | |/ | | | | when in failfast mode, even in the absence of failures.
| * Issue #22894: TestCase.subTest() would cause the test suite to be stopped ↵Antoine Pitrou2014-11-233-1/+33
| | | | | | | | when in failfast mode, even in the absence of failures.
* | Null mergeAntoine Pitrou2014-11-230-0/+0
|\ \ | |/
| * Issue #22638: SSLv3 is now disabled throughout the standard library.Antoine Pitrou2014-10-172-0/+6
| | | | | | | | It can still be enabled by instantiating a SSLContext manually.
* | PEP 479: Use the return-keyword instead of raising StopIteration inside a ↵Raymond Hettinger2014-11-236-7/+4
| | | | | | | | generators.
* | PEP 479: Don't let StopIteration bubble out of calls to next() inside a ↵Raymond Hettinger2014-11-232-7/+28
| | | | | | | | generator.
* | Really add downloads page link to OS X installer README screens.Ned Deily2014-11-222-1/+15
| |
* | Add downloads page link to OS X installer README screens.Ned Deily2014-11-220-0/+0
|\ \ | |/
| * Add downloads page link to OS X installer README screens.Ned Deily2014-11-222-8/+9
| |
* | Issue #22834: cwd can't not exist on Windows, skip the testZachary Ware2014-11-221-0/+1
| |
* | Closes #22869: Move PyOS_CheckStack back to pythonrun.cZachary Ware2014-11-222-38/+37
| |
* | Issue #22869: Remove duplicate stack check from pythonrun.cSteve Dower2014-11-221-37/+0
| |
* | Issue #19720: Suppressed context for some exceptions in importlib.Serhiy Storchaka2014-11-211-1/+4
|\ \ | |/
| * Issue #17293: socket.gethostbyname() can raise an exception of FreeBSD.Serhiy Storchaka2014-11-211-1/+4
| |
* | Issue #19720: Suppressed context for some exceptions in importlib.Serhiy Storchaka2014-11-213-5/+6
| |
* | Issue #22834: Have import suppress FileNotFoundError when the currentBrett Cannon2014-11-217-1000/+1042
| | | | | | | | | | | | working directory no longer exists. Thanks to Martin Panter for the bug report.
* | Issue #22869: Add pylifecycle.c/.h files to pythoncore project.Steve Dower2014-11-212-0/+8
| |
* | Issue #22796: HTTP cookie parsing is now stricter, in order to protect ↵Antoine Pitrou2014-11-213-23/+48
| | | | | | | | against potential injection attacks.
* | (Merge 3.4) asyncio: BaseSelectorEventLoop.close() now closes the self-pipeVictor Stinner2014-11-201-1/+3
|\ \ | |/ | | | | | | before calling the parent close() method. If the event loop is already closed, the self-pipe is not unregistered from the selector.
| * asyncio: BaseSelectorEventLoop.close() now closes the self-pipe before callingVictor Stinner2014-11-201-1/+3
| | | | | | | | | | the parent close() method. If the event loop is already closed, the self-pipe is not unregistered from the selector.
* | Merge 3.4 (asyncio)Victor Stinner2014-11-204-21/+35
|\ \ | |/
| * asyncio: Coroutine objects are now rejected with a TypeError by the followingVictor Stinner2014-11-204-21/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | functions: * add_signal_handler() * call_at() * call_later() * call_soon() * call_soon_threadsafe() * run_in_executor() Fix also the error message of add_signal_handler() (fix the name of the function).
* | Merge with 3.4 (asyncio)Victor Stinner2014-11-203-43/+67
|\ \ | |/
| * asyncio, test_events: Ignore the "SSL handshake failed" log in debug modeVictor Stinner2014-11-201-1/+3
| |