| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Issue #18214: Improve finalization of Python modules to avoid setting their ↵ | Antoine Pitrou | 2013-07-31 | 6 | -12/+88 |
| | | | | | globals to None, in most cases. | ||||
| * | #17616: wave.open now supports the 'with' statement. | R David Murray | 2013-07-31 | 2 | -10/+32 |
| | | | | | Feature and tests by ClClaudiu.Popa, I added the doc changes. | ||||
| * | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 6 | -39/+604 |
| | | |||||
| * | Add simple test for repr(lock) | Christian Heimes | 2013-07-30 | 1 | -0/+5 |
| | | |||||
| * | Add simple test for resource.getpagesize() | Christian Heimes | 2013-07-30 | 1 | -0/+5 |
| |\ | |||||
| | * | Add simple test for resource.getpagesize() | Christian Heimes | 2013-07-30 | 1 | -0/+5 |
| | | | |||||
| * | | Issue #18599: Fix name attribute of _sha1.sha1() object. It now returns | Christian Heimes | 2013-07-30 | 1 | -16/+61 |
| |\ \ | |/ | | | | | | | 'SHA1' instead of 'SHA'. Add more tests for hashlib and hash object attributes | ||||
| | * | Add more tests for hashlib and hash object attributes | Christian Heimes | 2013-07-30 | 1 | -13/+62 |
| | | | |||||
| * | | Issue #18593: fix typo in comment | Eli Bendersky | 2013-07-30 | 1 | -1/+1 |
| |\ \ | |/ | |||||
| | * | Issue #18593: fix typo in comment | Eli Bendersky | 2013-07-30 | 1 | -1/+1 |
| | | | |||||
| * | | Merge with 3.3 | Terry Jan Reedy | 2013-07-30 | 2 | -2/+2 |
| |\ \ | |/ | |||||
| | * | Make all idle test case names end with 'Test'. | Terry Jan Reedy | 2013-07-30 | 2 | -2/+2 |
| | | | |||||
| * | | Merge #15415 from 3.3 (again) | Nick Coghlan | 2013-07-29 | 1 | -5/+7 |
| |\ \ | |/ | |||||
| | * | Third attempt to fix #15415 on Windows | Nick Coghlan | 2013-07-29 | 1 | -5/+7 |
| | | | | | | | | | | | With help from jkloth on IRC, so it will hopefully work this time :) | ||||
| * | | Merge #15415 Windows buildbot change from 3.3 | Nick Coghlan | 2013-07-29 | 1 | -5/+5 |
| |\ \ | |/ | |||||
| | * | Attempt to fix #15415 on Windows | Nick Coghlan | 2013-07-29 | 1 | -5/+5 |
| | | | |||||
| * | | Merge with 3.3 | Terry Jan Reedy | 2013-07-28 | 1 | -4/+12 |
| |\ \ | |/ | |||||
| | * | Update gui section of idle test README. | Terry Jan Reedy | 2013-07-28 | 1 | -4/+12 |
| | | | |||||
| * | | Merge with 3.3 | Terry Jan Reedy | 2013-07-28 | 1 | -4/+1 |
| |\ \ | |/ | |||||
| | * | Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7). | Terry Jan Reedy | 2013-07-28 | 1 | -4/+1 |
| | | | |||||
| * | | Merge #15415 from 3.3 | Nick Coghlan | 2013-07-28 | 5 | -46/+190 |
| |\ \ | |/ | |||||
| | * | Close #15415: Factor out temp dir helpers to test.support | Nick Coghlan | 2013-07-28 | 5 | -46/+190 |
| | | | | | | | | | Patch by Chris Jerdonek | ||||
| | * | Issue #15494: test.support is now a package rather than a module | Nick Coghlan | 2013-07-28 | 2 | -3/+6 |
| | | | | | | | | | | | | | | | Also including this change in 3.3 to help avoid spurious conflicts between the two most active branches. (Initial patch by Indra Talip) | ||||
| * | | Close #15494: test.support is now a package rather than a module | Nick Coghlan | 2013-07-28 | 2 | -3/+6 |
| | | | | | | | | | Initial patch by Indra Talip | ||||
| * | | Close #13266: Add inspect.unwrap | Nick Coghlan | 2013-07-28 | 2 | -8/+110 |
| | | | | | | | | | Initial patch by Daniel Urban and Aaron Iles | ||||
| * | | Restore the data block size to 62. | Raymond Hettinger | 2013-07-28 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | The former block size traded away good fit within cache lines in order to gain faster division in deque_item(). However, compilers are getting smarter and can now replace the slow division operation with a fast integer multiply and right shift. Accordingly, it makes sense to go back to a size that lets blocks neatly fill entire cache-lines. GCC-4.8 and CLANG 4.0 both compute "x // 62" with something roughly equivalent to "x * 9520900167075897609 >> 69". | ||||
| * | | Merge with 3.3 | Terry Jan Reedy | 2013-07-28 | 1 | -5/+17 |
| |\ \ | |/ | |||||
| | * | Issue #18441: Make test.support.requires('gui') skip when it should. | Terry Jan Reedy | 2013-07-28 | 1 | -5/+17 |
| | | | |||||
| * | | merge 3.3 (#18565) | Benjamin Peterson | 2013-07-27 | 1 | -1/+40 |
| |\ \ | |/ | |||||
| | * | add a test for issue #17669 (closes #18565) | Benjamin Peterson | 2013-07-27 | 1 | -1/+40 |
| | | | | | | | | | Patch from Phil Connell. | ||||
| * | | Close #18545: now only executes member_type if no _value_ is assigned in ↵ | Ethan Furman | 2013-07-25 | 2 | -4/+20 |
| | | | | | | | | | __new__. | ||||
| * | | #17818: aifc.getparams now returns a namedtuple. | R David Murray | 2013-07-25 | 3 | -7/+44 |
| | | | | | | | | | Patch by Claudiu Popa. | ||||
| * | | Fix typo on MutableSequence docstring. | Guido van Rossum | 2013-07-25 | 1 | -1/+1 |
| | | | |||||
| * | | #18503: small cleanups in test_email. | R David Murray | 2013-07-25 | 1 | -2/+2 |
| |\ \ | |/ | | | | | Patch by Vajrasky Kok. | ||||
| | * | #18503: small cleanups in test_email. | R David Murray | 2013-07-25 | 1 | -2/+2 |
| | | | | | | | | | Patch by Vajrasky Kok. | ||||
| * | | #14853: merge with 3.3. | Ezio Melotti | 2013-07-25 | 1 | -10/+0 |
| |\ \ | |/ | |||||
| | * | #14853: remove test that was making too many assumptions about stdin. Patch ↵ | Ezio Melotti | 2013-07-25 | 1 | -10/+0 |
| | | | | | | | | | by Elena Oat. | ||||
| * | | Add in a comment that was removed in 240adc564539 (requested by Victor Stinner) | Brian Curtin | 2013-07-23 | 1 | -0/+1 |
| | | | |||||
| * | | Merge | Brian Curtin | 2013-07-22 | 1 | -843/+561 |
| |\ \ | |||||
| | * \ | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 1 | -843/+561 |
| | |\ \ | | |/ | | | | | | | | | | generate tests for different compression types. Fixed a bug with skipping some tests due to use of exhausted iterators. | ||||
| | | * | Issue #17944: test_zipfile now discoverable and uses subclassing to | Serhiy Storchaka | 2013-07-22 | 1 | -849/+562 |
| | | | | | | | | | | | | | | | | generate tests for different compression types. Fixed a bug with skipping some tests due to use of exhausted iterators. | ||||
| * | | | Fix #18530. Remove extra stat call from posixpath.ismount | Brian Curtin | 2013-07-22 | 1 | -8/+14 |
| |/ / | |||||
| * | | Issue #17532: merge from 3.3 | Ned Deily | 2013-07-20 | 1 | -1/+5 |
| |\ \ | |/ | |||||
| | * | Issue #17532: Prevent exception when changing key sets if Options menu is empty. | Ned Deily | 2013-07-20 | 1 | -1/+5 |
| | | | |||||
| * | | test_ssl: use a bytestring here | Antoine Pitrou | 2013-07-20 | 1 | -1/+1 |
| | | | |||||
| * | | Issue #9177: Calling read() or write() now raises ValueError, not ↵ | Antoine Pitrou | 2013-07-20 | 2 | -0/+19 |
| | | | | | | | | | | | | | AttributeError, on a closed SSL socket. Patch by Senko Rasic. | ||||
| * | | Change _names to _names_ since the latter is reserved for Enum use. | Ethan Furman | 2013-07-20 | 2 | -41/+42 |
| | | | | | | | | | | | Before this change only the methods were _single_underscored_; now the attributes are as well. | ||||
| * | | Close #18508 -- fix _value2member_map to always have the member's value | Ethan Furman | 2013-07-20 | 2 | -11/+31 |
| | | | |||||
| * | | Merge. | Richard Oudkerk | 2013-07-19 | 1 | -4/+7 |
| |\ \ | |/ | |||||
| | * | Prevent dangling threads/process warning for test_multiprocessing. | Richard Oudkerk | 2013-07-19 | 1 | -4/+7 |
| | | | |||||
