summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Small cleanup in test_ftplibAntoine Pitrou2012-12-191-13/+14
|\
| * Small cleanup in test_ftplibAntoine Pitrou2012-12-191-13/+14
| |
* | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-1928-87/+79
| | | | | | | | Patch by Serhiy Storchaka.
* | Add versionchanged tag to faq (useless btw because changed text is commented ↵Andrew Svetlov2012-12-191-0/+4
| | | | | | | | out)
* | Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-181-1/+8
|\ \ | |/ | | | | #13876) - probably not Python-related.
| * Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue ↵Antoine Pitrou2012-12-181-1/+8
| | | | | | | | #13876) - probably not Python-related.
* | Call importlib.invalidate_caches() after creating module files in ↵Antoine Pitrou2012-12-181-0/+3
|\ \ | |/ | | | | test_threaded_import.
| * Call importlib.invalidate_caches() after creating module files in ↵Antoine Pitrou2012-12-181-0/+3
| | | | | | | | test_threaded_import.
* | Try to make test_threaded_import faster and safer (issue #15599).Antoine Pitrou2012-12-181-2/+2
|\ \ | |/
| * Try to make test_threaded_import faster and safer (issue #15599).Antoine Pitrou2012-12-181-2/+2
| |
* | Add sanity assertions in some import lock code (issue #15599).Antoine Pitrou2012-12-182-0/+3
|\ \ | |/
| * Add sanity assertions in some import lock code (issue #15599).Antoine Pitrou2012-12-182-0/+3
| |
* | Mention OSError instead of IOError in the docs.Andrew Svetlov2012-12-181-2/+2
| |
* | Issue #16717: get rid of socket.error, replace with OSErrorAndrew Svetlov2012-12-1839-167/+169
| |
* | Issue #16706: get rid of os.errorAndrew Svetlov2012-12-1833-4100/+4066
| |
* | Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1842-64/+64
|\ \ | |/ | | | | Patch by Serhiy Storchaka.
| * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1842-64/+64
| |\ | | | | | | | | | Patch by Serhiy Storchaka.
| | * Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-1836-54/+54
| | | | | | | | | | | | Patch by Serhiy Storchaka.
* | | Relax test when WITH_PYMALLOC is false or undefined.Antoine Pitrou2012-12-181-1/+4
| | |
* | | Issue #16711: Fix required method names for collections.IteratorAndrew Svetlov2012-12-181-1/+1
|\ \ \ | |/ / | | | | | | Thanks to Inada Naoki
| * | Issue #16711: Fix required method names for collections.IteratorAndrew Svetlov2012-12-181-1/+1
| |\ \ | | |/ | | | | | | Thanks to Inada Naoki
| | * Issue #16711: Fix required method names for collections.IteratorAndrew Svetlov2012-12-181-1/+1
| | | | | | | | | | | | Thanks to Inada Naoki
* | | Following issue #13390, fix compilation --without-pymalloc, and make ↵Antoine Pitrou2012-12-173-8/+21
| | | | | | | | | | | | 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-172-3/+10
|\ \ \ | |/ / | | | | | | (patch by Serhiy Storchaka)
| * | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵Giampaolo Rodola'2012-12-172-3/+10
| |\ \ | | |/ | | | | | | (patch by Serhiy Storchaka)
| | * Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵Giampaolo Rodola'2012-12-172-3/+10
| | | | | | | | | | | | (patch by Serhiy Storchaka)
* | | Update example: Counter.subtract returns None, not selfAndrew Svetlov2012-12-171-0/+1
|\ \ \ | |/ /
| * | Update example: Counter.subtract returns None, not selfAndrew Svetlov2012-12-171-0/+1
| |\ \ | | |/
| | * Update example: Counter.subtract returns None, not selfAndrew Svetlov2012-12-171-0/+1
| | |
* | | Fix typoAndrew Svetlov2012-12-171-1/+1
|\ \ \ | |/ /
| * | Fix typoAndrew Svetlov2012-12-171-1/+1
| |\ \ | | |/
| | * Fix typoAndrew Svetlov2012-12-171-1/+1
| | |
* | | Add Ashish Nitin Patil for work on Issue #14901Brian Curtin2012-12-171-0/+1
| | |
* | | Merge 3.3Brian Curtin2012-12-172-305/+30
|\ \ \ | |/ /
| * | Merge 3.2Brian Curtin2012-12-172-305/+30
| |\ \ | | |/
| | * Fix #14901. Update the Windows FAQ.Brian Curtin2012-12-172-305/+30
| | | | | | | | | | | | Patch by Ashish Nitin Patil.
* | | Merge 3.3.Stefan Krah2012-12-162-30/+54
|\ \ \ | |/ /
| * | Issue #15783: Support None default values in the Context() constructor.Stefan Krah2012-12-162-30/+54
| | |