summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-1837-164/+167
|
* Issue #16706: get rid of os.errorAndrew Svetlov2012-12-1832-66/+67
|
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1833-50/+50
|\ | | | | | | Patch by Serhiy Storchaka.
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1833-50/+50
| |\ | | | | | | | | | Patch by Serhiy Storchaka.
| | * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1831-47/+47
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | Relax test when WITH_PYMALLOC is false or undefined.Antoine Pitrou2012-12-181-1/+4
| | |
* | | Following issue #13390, fix compilation --without-pymalloc, and make ↵Antoine Pitrou2012-12-171-1/+6
| | | | | | | | | | | | sys.getallocatedblocks() return 0 in that situation.
* | | Get rig of EnvironmentError (#16705)Andrew Svetlov2012-12-1716-35/+34
| | |
* | | Replace mmap.error with OSError, #16705Andrew Svetlov2012-12-171-2/+2
| | |
* | | Issue #16704: Get rid of select.error in stdlib. Use OSError instead.Andrew Svetlov2012-12-175-8/+8
| | |
* | | Issue 16646 (ftplib): deliberately use intermediate variable after catching ↵Giampaolo Rodola'2012-12-171-1/+2
|\ \ \ | |/ / | | | | | | exception
| * | Issue 16646 (ftplib): deliberately use intermediate variable after catching ↵Giampaolo Rodola'2012-12-171-1/+2
| |\ \ | | |/ | | | | | | exception
| | * Issue 16646 (ftplib): deliberately use intermediate variable after catching ↵Giampaolo Rodola'2012-12-171-1/+2
| | | | | | | | | | | | exception
* | | Replace os.error with OSError in tkinter and IDLEAndrew Svetlov2012-12-176-8/+8
| | |
* | | Cleanup: remove not needed mocks.Andrew Svetlov2012-12-171-6/+0
| | |
* | | Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-173-13/+9
|\ \ \ | |/ / | | | | | | Initial patch by Serhiy Storchaka.
| * | Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
| |\ \ | | |/ | | | | | | Patch by Serhiy Storchaka.
| | * Issue #16647: save socket error details in LMTP.connect()Andrew Svetlov2012-12-171-2/+2
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | Remove obsolete code: now IOError and WindowsError are aliases for OSErrorAndrew Svetlov2012-12-171-8/+0
| | |
* | | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵Giampaolo Rodola'2012-12-171-3/+7
|\ \ \ | |/ / | | | | | | (patch by Serhiy Storchaka)
| * | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵Giampaolo Rodola'2012-12-171-3/+7
| |\ \ | | |/ | | | | | | (patch by Serhiy Storchaka)
| | * Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵Giampaolo Rodola'2012-12-171-3/+7
| | | | | | | | | | | | (patch by Serhiy Storchaka)
| | * Fix ResourceWarnings in test_ptyAntoine Pitrou2012-12-161-3/+5
| | |
* | | Merge 3.3.Stefan Krah2012-12-161-0/+21
|\ \ \ | |/ /
| * | Issue #15783: Support None default values in the Context() constructor.Stefan Krah2012-12-161-0/+21
| | |
* | | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-161-1/+8
|\ \ \ | |/ / | | | | | | #13876) - probably not Python-related.
| * | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-161-1/+8
| | | | | | | | | | | | #13876) - probably not Python-related.
* | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
|\ \ \ | |/ /
| * | Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
| |\ \ | | |/
| | * Issue #16696: fix comparison between bytes and string. Also, improve glob tests.Antoine Pitrou2012-12-162-6/+29
| | |
* | | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-162-1/+17
|\ \ \ | |/ / | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
| * | Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-162-1/+17
| |\ \ | | |/ | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
| | * Issue #16626: Fix infinite recursion in glob.glob() on Windows when the ↵Antoine Pitrou2012-12-162-1/+17
| | | | | | | | | | | | | | | | | | pattern contains a wildcard in the drive or UNC path. Patch by Serhiy Storchaka.
* | | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
|\ \ \ | |/ / | | | | | | Patch by Sebastian Kreft.
| * | #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
| |\ \ | | |/ | | | | | | Patch by Sebastian Kreft.
| | * #16664: Add regression tests for glob's behaviour concerning "."-entriesHynek Schlawack2012-12-161-1/+6
| | | | | | | | | | | | Patch by Sebastian Kreft.
* | | Merge 3.3.Stefan Krah2012-12-152-14/+300
|\ \ \ | |/ /
| * | Issue #15783: Except for the number methods, the C version of decimal nowStefan Krah2012-12-152-14/+300
| | | | | | | | | | | | | | | supports all None default values present in decimal.py. These values were largely undocumented.
* | | #11175: argparse.FileType now accepts encoding and errors arguments.Petri Lehtinen2012-12-152-3/+45
| | | | | | | | | | | | Patch by Lucas Maystre.
* | | Issue #16488: epoll() objects now support the `with` statement.Antoine Pitrou2012-12-151-0/+7
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | MergeAntoine Pitrou2012-12-151-0/+5
|\ \ \
| * | | use error label instead of breaking eval loop (closes #16693)Benjamin Peterson2012-12-151-0/+5
| | | |
* | | | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-152-2/+37
|\ \ \ \ | |/ / / |/| / / | |/ / | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
| * | Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-152-2/+37
| |\ \ | | |/ | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
| | * Issue #16298: In HTTPResponse.read(), close the socket when there is no ↵Antoine Pitrou2012-12-152-1/+18
| | | | | | | | | | | | | | | | | | Content-Length and the incoming stream is finished. Patch by Eran Rundstein.
* | | Rename test module names for #16421 to don't clash with other tests.Andrew Svetlov2012-12-151-4/+4
| | |
* | | Cleanup filecmp: starting from 3.3 os.error is alias for OSErrorAndrew Svetlov2012-12-141-3/+3
| | |
* | | Issue #16421: allow to load multiple modules from the same shared object.Andrew Svetlov2012-12-141-0/+14
| | | | | | | | | | | | Patch by Václav Šmilauer.
* | | Issue #16049: add abc.ABC helper class.Andrew Svetlov2012-12-132-0/+19
| | | | | | | | | | | | Patch by Bruno Dupuis.
* | | Merge with 3.3 for #16661Ross Lagerwall2012-12-131-10/+3
|\ \ \ | |/ /