Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #16443: Add docstrings to regular expression match objects. | Andrew Svetlov | 2012-12-23 | 3 | -15/+60 |
|\ | | | | | | | Patch by Anton Kasyanov. | ||||
| * | merge heads | Andrew Svetlov | 2012-12-23 | 3 | -15/+59 |
| |\ | |||||
| | * | Issue #16443: Add docstrings to regular expression match objects. | Andrew Svetlov | 2012-12-23 | 3 | -15/+59 |
| | | | | | | | | | | | | Patch by Anton Kasyanov. | ||||
* | | | merge from 3.2 | Senthil Kumaran | 2012-12-23 | 3 | -12/+34 |
|\ \ \ | |/ / | | | | | | | Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that to return headers correctly | ||||
| * | | Fix Issue15701 - HTTPError info method call raises AttributeError. Fix that ↵ | Senthil Kumaran | 2012-12-23 | 3 | -10/+32 |
| |/ | | | | | | | to return headers correctly | ||||
* | | Issue #16753: Define __GNUC_STDC_INLINE__ to an integer (same as gcc). | Stefan Krah | 2012-12-23 | 1 | -1/+1 |
| | | |||||
* | | merge heads | Andrew Svetlov | 2012-12-23 | 2 | -2/+44 |
|\ \ | |||||
| * | | Issue #16045: add more unit tests for built-in int() | Andrew Svetlov | 2012-12-23 | 2 | -2/+44 |
| | | | | | | | | | | | | Patch by Chris Jerdonek. | ||||
* | | | Issue #16752: Add a missing import to modulefinder. | Brett Cannon | 2012-12-23 | 4 | -3/+19 |
| | | | | | | | | | | | | | | | | | | | | | Also fix Misc/ACKS to put part of it back in alphabetical order and remove some duplicate names. Patch by Berker Peksag. | ||||
* | | | Issue #16745: The gcc visibility pragma is buggy on OpenIndiana and NetBSD. | Stefan Krah | 2012-12-22 | 1 | -1/+2 |
| | | | |||||
* | | | Fix Visual Studio build. | Stefan Krah | 2012-12-22 | 1 | -0/+3 |
| | | | |||||
* | | | Issue #16745: Hide symbols in _decimal.so. | Stefan Krah | 2012-12-22 | 12 | -1/+95 |
| | | | |||||
* | | | Issue #16745: Hide a couple of symbols by making them local. | Stefan Krah | 2012-12-21 | 2 | -8/+8 |
| | | | |||||
* | | | Merge with 3.2 : Don't DECREF the ctypes error_object without the GIL held. | Kristjan Valur Jonsson | 2012-12-21 | 1 | -1/+1 |
|\ \ \ | | |/ | |/| | |||||
| * | | Merge with 3.1 : Don't DECREF the ctypes error_object without the GIL held. | Kristjan Valur Jonsson | 2012-12-21 | 1 | -1/+1 |
| |\ \ | |||||
| | * | | Don't DECREF the ctypes error_object without the GIL held. | Kristjan Valur Jonsson | 2012-12-21 | 1 | -1/+1 |
| | | | | |||||
* | | | | link to GIL as a term | Benjamin Peterson | 2012-12-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Patch from Jeff Knupp. | ||||
* | | | | fix typo (#16687) | Benjamin Peterson | 2012-12-21 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | Patch from Jeff Knupp. | ||||
* | | | | improve message (#16597) | Benjamin Peterson | 2012-12-20 | 1 | -2/+2 |
| | | | | |||||
* | | | | call close on the underlying stream even if flush raises (closes #16597) | Benjamin Peterson | 2012-12-20 | 5 | -13/+80 |
| | | | | | | | | | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | | | try to call __bytes__ before __index__ (closes #16722) | Benjamin Peterson | 2012-12-19 | 3 | -5/+37 |
| |_|/ |/| | | |||||
* | | | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 3 | -3/+3 |
|\ \ \ | |/ / | |||||
| * | | replace threw with raised (#16714) | Andrew Svetlov | 2012-12-19 | 2 | -2/+2 |
| | | | |||||
* | | | Small cleanup in test_ftplib | Antoine Pitrou | 2012-12-19 | 1 | -13/+14 |
| | | | |||||
* | | | Silence sporadic failure in RecvmsgIntoSCTPStreamTest.testRecvmsgEOF (issue ↵ | Antoine Pitrou | 2012-12-18 | 1 | -1/+8 |
| | | | | | | | | | | | | #13876) - probably not Python-related. | ||||
* | | | Call importlib.invalidate_caches() after creating module files in ↵ | Antoine Pitrou | 2012-12-18 | 1 | -0/+3 |
| | | | | | | | | | | | | test_threaded_import. | ||||
* | | | Try to make test_threaded_import faster and safer (issue #15599). | Antoine Pitrou | 2012-12-18 | 1 | -2/+2 |
| | | | |||||
* | | | Add sanity assertions in some import lock code (issue #15599). | Antoine Pitrou | 2012-12-18 | 2 | -0/+3 |
| | | | |||||
* | | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 42 | -64/+64 |
|\ \ \ | |/ / | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Issue #16714: use 'raise' exceptions, don't 'throw'. | Andrew Svetlov | 2012-12-18 | 36 | -54/+54 |
| | | | | | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | | Issue #16711: Fix required method names for collections.Iterator | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
|\ \ \ | |/ / | | | | | | | Thanks to Inada Naoki | ||||
| * | | Issue #16711: Fix required method names for collections.Iterator | Andrew Svetlov | 2012-12-18 | 1 | -1/+1 |
| | | | | | | | | | | | | Thanks to Inada Naoki | ||||
* | | | Issue 16646 (ftplib): deliberately use intermediate variable after catching ↵ | Giampaolo Rodola' | 2012-12-17 | 1 | -1/+2 |
|\ \ \ | |/ / | | | | | | | exception | ||||
| * | | Issue 16646 (ftplib): deliberately use intermediate variable after catching ↵ | Giampaolo Rodola' | 2012-12-17 | 1 | -1/+2 |
| | | | | | | | | | | | | exception | ||||
* | | | Issue #16647: save socket error details in LMTP.connect() | Andrew Svetlov | 2012-12-17 | 1 | -2/+2 |
|\ \ \ | |/ / | | | | | | | Patch by Serhiy Storchaka. | ||||
| * | | Issue #16647: save socket error details in LMTP.connect() | Andrew Svetlov | 2012-12-17 | 1 | -2/+2 |
| | | | | | | | | | | | | Patch by Serhiy Storchaka. | ||||
* | | | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵ | Giampaolo Rodola' | 2012-12-17 | 2 | -3/+10 |
|\ \ \ | |/ / | | | | | | | (patch by Serhiy Storchaka) | ||||
| * | | Fix issue #16646: ftplib.FTP.makeport() might lose socket error details. ↵ | Giampaolo Rodola' | 2012-12-17 | 2 | -3/+10 |
| | | | | | | | | | | | | (patch by Serhiy Storchaka) | ||||
* | | | Update example: Counter.subtract returns None, not self | Andrew Svetlov | 2012-12-17 | 1 | -0/+1 |
|\ \ \ | |/ / | |||||
| * | | Update example: Counter.subtract returns None, not self | Andrew Svetlov | 2012-12-17 | 1 | -0/+1 |
| | | | |||||
* | | | Fix typo | Andrew Svetlov | 2012-12-17 | 1 | -1/+1 |
|\ \ \ | |/ / | |||||
| * | | Fix typo | Andrew Svetlov | 2012-12-17 | 1 | -1/+1 |
| | | | |||||
* | | | Merge 3.2 | Brian Curtin | 2012-12-17 | 2 | -305/+30 |
|\ \ \ | |/ / | |||||
| * | | Fix #14901. Update the Windows FAQ. | Brian Curtin | 2012-12-17 | 2 | -305/+30 |
| | | | | | | | | | | | | Patch by Ashish Nitin Patil. | ||||
* | | | Issue #15783: Support None default values in the Context() constructor. | Stefan Krah | 2012-12-16 | 2 | -30/+54 |
| | | | |||||
* | | | Silence sporadic failure in RecvmsgSCTPStreamTest.testRecvmsgEOF (issue ↵ | Antoine Pitrou | 2012-12-16 | 1 | -1/+8 |
| | | | | | | | | | | | | #13876) - probably not Python-related. | ||||
* | | | Null merge | Antoine Pitrou | 2012-12-16 | 0 | -0/+0 |
|\ \ \ | |/ / | |||||
| * | | Fix ResourceWarnings in test_pty | Antoine Pitrou | 2012-12-16 | 1 | -3/+5 |
| | | | |||||
* | | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests. | Antoine Pitrou | 2012-12-16 | 2 | -6/+29 |
|\ \ \ | |/ / | |||||
| * | | Issue #16696: fix comparison between bytes and string. Also, improve glob tests. | Antoine Pitrou | 2012-12-16 | 2 | -6/+29 |
| | | |