Benjamin Peterson
|
7643c92cdd
|
merge 3.3 (#16722)
|
2012-12-19 15:28:46 -06:00 |
Benjamin Peterson
|
5ff3f73d94
|
try to call __bytes__ before __index__ (closes #16722)
|
2012-12-19 15:27:41 -06:00 |
Benjamin Peterson
|
af5e29a769
|
merge heads
|
2012-12-19 15:17:43 -06:00 |
Benjamin Peterson
|
fc8f5c5e0f
|
update importlib.h
|
2012-12-19 15:16:51 -06:00 |
Andrew Svetlov
|
fd43b4d3e4
|
replace threw with raised (#16714)
|
2012-12-19 22:55:40 +02:00 |
Andrew Svetlov
|
1f415cf2c2
|
replace threw with raised (#16714)
|
2012-12-19 22:54:47 +02:00 |
Andrew Svetlov
|
7bd61cbc03
|
replace threw with raised (#16714)
|
2012-12-19 22:49:25 +02:00 |
Antoine Pitrou
|
aa03a1fe2a
|
Small cleanup in test_ftplib
|
2012-12-19 20:44:37 +01:00 |
Antoine Pitrou
|
08d02724df
|
Small cleanup in test_ftplib
|
2012-12-19 20:44:02 +01:00 |
Andrew Svetlov
|
2606a6f197
|
Issue #16719: Get rid of WindowsError. Use OSError instead
Patch by Serhiy Storchaka.
|
2012-12-19 14:33:35 +02:00 |
Andrew Svetlov
|
8a045cb93b
|
Add versionchanged tag to faq (useless btw because changed text is commented out)
|
2012-12-19 13:45:30 +02:00 |
Antoine Pitrou
|
f23e3f7ad2
|
Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue #13876) - probably not Python-related.
|
2012-12-18 23:44:59 +01:00 |
Antoine Pitrou
|
d5a070f586
|
Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue #13876) - probably not Python-related.
|
2012-12-18 23:44:36 +01:00 |
Antoine Pitrou
|
dcac718236
|
Call importlib.invalidate_caches() after creating module files in test_threaded_import.
|
2012-12-18 23:28:24 +01:00 |
Antoine Pitrou
|
07edb82e4b
|
Call importlib.invalidate_caches() after creating module files in test_threaded_import.
|
2012-12-18 23:28:04 +01:00 |
Antoine Pitrou
|
1688812894
|
Try to make test_threaded_import faster and safer (issue #15599).
|
2012-12-18 23:04:10 +01:00 |
Antoine Pitrou
|
e0b1c23145
|
Try to make test_threaded_import faster and safer (issue #15599).
|
2012-12-18 23:03:42 +01:00 |
Antoine Pitrou
|
ad8c461e2c
|
Add sanity assertions in some import lock code (issue #15599).
|
2012-12-18 22:18:58 +01:00 |
Antoine Pitrou
|
202b60640b
|
Add sanity assertions in some import lock code (issue #15599).
|
2012-12-18 22:18:17 +01:00 |
Andrew Svetlov
|
5f11a00056
|
Mention OSError instead of IOError in the docs.
|
2012-12-18 23:16:44 +02:00 |
Andrew Svetlov
|
0832af6628
|
Issue #16717: get rid of socket.error, replace with OSError
|
2012-12-18 23:10:48 +02:00 |
Andrew Svetlov
|
ad28c7f9da
|
Issue #16706: get rid of os.error
|
2012-12-18 22:02:39 +02:00 |
Andrew Svetlov
|
a191959849
|
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
|
2012-12-18 21:27:16 +02:00 |
Andrew Svetlov
|
5b89840d9c
|
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
|
2012-12-18 21:26:36 +02:00 |
Andrew Svetlov
|
737fb89dd1
|
Issue #16714: use 'raise' exceptions, don't 'throw'.
Patch by Serhiy Storchaka.
|
2012-12-18 21:14:22 +02:00 |
Antoine Pitrou
|
f61dc4cea2
|
Relax test when WITH_PYMALLOC is false or undefined.
|
2012-12-18 19:50:58 +01:00 |
Andrew Svetlov
|
a9466c6530
|
Issue #16711: Fix required method names for collections.Iterator
Thanks to Inada Naoki
|
2012-12-18 15:53:39 +02:00 |
Andrew Svetlov
|
e2303f8970
|
Issue #16711: Fix required method names for collections.Iterator
Thanks to Inada Naoki
|
2012-12-18 15:53:15 +02:00 |
Andrew Svetlov
|
4001e96179
|
Issue #16711: Fix required method names for collections.Iterator
Thanks to Inada Naoki
|
2012-12-18 15:48:10 +02:00 |
Antoine Pitrou
|
928405303d
|
Following issue #13390, fix compilation --without-pymalloc, and make sys.getallocatedblocks() return 0 in that situation.
|
2012-12-17 23:05:59 +01:00 |
Andrew Svetlov
|
3438fa496d
|
Get rig of EnvironmentError (#16705)
|
2012-12-17 23:35:18 +02:00 |
Andrew Svetlov
|
6eda46de99
|
Replace mmap.error with OSError, #16705
|
2012-12-17 22:55:31 +02:00 |
Andrew Svetlov
|
6d8a122b9c
|
Issue #16704: Get rid of select.error in stdlib. Use OSError instead.
|
2012-12-17 22:23:46 +02:00 |
Giampaolo Rodola'
|
5ee29491e5
|
Issue 16646 (ftplib): deliberately use intermediate variable after catching exception
|
2012-12-17 20:46:45 +01:00 |
Giampaolo Rodola'
|
b6375a2d91
|
Issue 16646 (ftplib): deliberately use intermediate variable after catching exception
|
2012-12-17 20:46:29 +01:00 |
Giampaolo Rodola'
|
57f3487994
|
Issue 16646 (ftplib): deliberately use intermediate variable after catching exception
|
2012-12-17 20:46:16 +01:00 |
Andrew Svetlov
|
786fbd8db7
|
Replace os.error with OSError in tkinter and IDLE
|
2012-12-17 19:51:15 +02:00 |
Andrew Svetlov
|
69d03c4799
|
Cleanup: remove not needed mocks.
|
2012-12-17 19:27:10 +02:00 |
Andrew Svetlov
|
2ade6f24cb
|
Issue #16647: save socket error details in LMTP.connect()
Initial patch by Serhiy Storchaka.
|
2012-12-17 18:57:16 +02:00 |
Andrew Svetlov
|
3b69824de9
|
Issue #16647: save socket error details in LMTP.connect()
Patch by Serhiy Storchaka.
|
2012-12-17 18:55:10 +02:00 |
Andrew Svetlov
|
b6693c4604
|
Issue #16647: save socket error details in LMTP.connect()
Patch by Serhiy Storchaka.
|
2012-12-17 18:54:53 +02:00 |
Andrew Svetlov
|
df485ca493
|
Remove obsolete code: now IOError and WindowsError are aliases for OSError
|
2012-12-17 16:15:35 +02:00 |
Giampaolo Rodola'
|
527e725732
|
Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (patch by Serhiy Storchaka)
|
2012-12-17 14:23:41 +01:00 |
Giampaolo Rodola'
|
896cb15d0c
|
Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (patch by Serhiy Storchaka)
|
2012-12-17 14:22:19 +01:00 |
Giampaolo Rodola'
|
fc3278802c
|
Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. (patch by Serhiy Storchaka)
|
2012-12-17 14:20:27 +01:00 |
Andrew Svetlov
|
84188c891c
|
Update example: Counter.subtract returns None, not self
|
2012-12-17 14:01:45 +02:00 |
Andrew Svetlov
|
7c42398f3b
|
Update example: Counter.subtract returns None, not self
|
2012-12-17 14:01:29 +02:00 |
Andrew Svetlov
|
f635172c72
|
Update example: Counter.subtract returns None, not self
|
2012-12-17 14:01:16 +02:00 |
Andrew Svetlov
|
57d0a536b2
|
Fix typo
|
2012-12-17 13:42:57 +02:00 |
Andrew Svetlov
|
2be0edb2c4
|
Fix typo
|
2012-12-17 13:42:40 +02:00 |