summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Collapse)AuthorAgeFilesLines
* Issue #18214: Improve finalization of Python modules to avoid setting their ↵Antoine Pitrou2013-07-316-12/+88
| | | | globals to None, in most cases.
* #17616: wave.open now supports the 'with' statement.R David Murray2013-07-312-10/+32
| | | | Feature and tests by ClClaudiu.Popa, I added the doc changes.
* Issue #18112: PEP 442 implementation (safe object finalization).Antoine Pitrou2013-07-306-39/+604
|
* Add simple test for repr(lock)Christian Heimes2013-07-301-0/+5
|
* Add simple test for resource.getpagesize()Christian Heimes2013-07-301-0/+5
|\
| * Add simple test for resource.getpagesize()Christian Heimes2013-07-301-0/+5
| |
* | Issue #18599: Fix name attribute of _sha1.sha1() object. It now returnsChristian Heimes2013-07-301-16/+61
|\ \ | |/ | | | | | | 'SHA1' instead of 'SHA'. Add more tests for hashlib and hash object attributes
| * Add more tests for hashlib and hash object attributesChristian Heimes2013-07-301-13/+62
| |
* | Issue #18593: fix typo in commentEli Bendersky2013-07-301-1/+1
|\ \ | |/
| * Issue #18593: fix typo in commentEli Bendersky2013-07-301-1/+1
| |
* | Merge with 3.3Terry Jan Reedy2013-07-302-2/+2
|\ \ | |/
| * Make all idle test case names end with 'Test'.Terry Jan Reedy2013-07-302-2/+2
| |
* | Merge #15415 from 3.3 (again)Nick Coghlan2013-07-291-5/+7
|\ \ | |/
| * Third attempt to fix #15415 on WindowsNick Coghlan2013-07-291-5/+7
| | | | | | | | | | With help from jkloth on IRC, so it will hopefully work this time :)
* | Merge #15415 Windows buildbot change from 3.3Nick Coghlan2013-07-291-5/+5
|\ \ | |/
| * Attempt to fix #15415 on WindowsNick Coghlan2013-07-291-5/+5
| |
* | Merge with 3.3Terry Jan Reedy2013-07-281-4/+12
|\ \ | |/
| * Update gui section of idle test README.Terry Jan Reedy2013-07-281-4/+12
| |
* | Merge with 3.3Terry Jan Reedy2013-07-281-4/+1
|\ \ | |/
| * Issue #18441: Remove check from test_text.py in 3.3,4 (already done in 2.7).Terry Jan Reedy2013-07-281-4/+1
| |
* | Merge #15415 from 3.3Nick Coghlan2013-07-285-46/+190
|\ \ | |/
| * Close #15415: Factor out temp dir helpers to test.supportNick Coghlan2013-07-285-46/+190
| | | | | | | | Patch by Chris Jerdonek
| * Issue #15494: test.support is now a package rather than a moduleNick Coghlan2013-07-282-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 moduleNick Coghlan2013-07-282-3/+6
| | | | | | | | Initial patch by Indra Talip
* | Close #13266: Add inspect.unwrapNick Coghlan2013-07-282-8/+110
| | | | | | | | Initial patch by Daniel Urban and Aaron Iles
* | Restore the data block size to 62.Raymond Hettinger2013-07-281-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.3Terry Jan Reedy2013-07-281-5/+17
|\ \ | |/
| * Issue #18441: Make test.support.requires('gui') skip when it should.Terry Jan Reedy2013-07-281-5/+17
| |
* | merge 3.3 (#18565)Benjamin Peterson2013-07-271-1/+40
|\ \ | |/
| * add a test for issue #17669 (closes #18565)Benjamin Peterson2013-07-271-1/+40
| | | | | | | | Patch from Phil Connell.
* | Close #18545: now only executes member_type if no _value_ is assigned in ↵Ethan Furman2013-07-252-4/+20
| | | | | | | | __new__.
* | #17818: aifc.getparams now returns a namedtuple.R David Murray2013-07-253-7/+44
| | | | | | | | Patch by Claudiu Popa.
* | Fix typo on MutableSequence docstring.Guido van Rossum2013-07-251-1/+1
| |
* | #18503: small cleanups in test_email.R David Murray2013-07-251-2/+2
|\ \ | |/ | | | | Patch by Vajrasky Kok.
| * #18503: small cleanups in test_email.R David Murray2013-07-251-2/+2
| | | | | | | | Patch by Vajrasky Kok.
* | #14853: merge with 3.3.Ezio Melotti2013-07-251-10/+0
|\ \ | |/
| * #14853: remove test that was making too many assumptions about stdin. Patch ↵Ezio Melotti2013-07-251-10/+0
| | | | | | | | by Elena Oat.
* | Add in a comment that was removed in 240adc564539 (requested by Victor Stinner)Brian Curtin2013-07-231-0/+1
| |
* | MergeBrian Curtin2013-07-221-843/+561
|\ \
| * \ Issue #17944: test_zipfile now discoverable and uses subclassing toSerhiy Storchaka2013-07-221-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 toSerhiy Storchaka2013-07-221-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.ismountBrian Curtin2013-07-221-8/+14
|/ /
* | Issue #17532: merge from 3.3Ned Deily2013-07-201-1/+5
|\ \ | |/
| * Issue #17532: Prevent exception when changing key sets if Options menu is empty.Ned Deily2013-07-201-1/+5
| |
* | test_ssl: use a bytestring hereAntoine Pitrou2013-07-201-1/+1
| |
* | Issue #9177: Calling read() or write() now raises ValueError, not ↵Antoine Pitrou2013-07-202-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 Furman2013-07-202-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 valueEthan Furman2013-07-202-11/+31
| |
* | Merge.Richard Oudkerk2013-07-191-4/+7
|\ \ | |/
| * Prevent dangling threads/process warning for test_multiprocessing.Richard Oudkerk2013-07-191-4/+7
| |