summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* #9607: restore keywords.kwlist after testing it.R David Murray2013-04-201-0/+2
|
* #9607: Add tests for the keyword module.R David Murray2013-04-202-1/+135
| | | | Based on the testing ideas in a patch written by Greg Malcolm.
* Merge #17413: make sure settrace funcs get passed exception instances for ↵R David Murray2013-04-191-0/+23
|\ | | | | | | | | | | 'value'. Patch by Ingrid Cheung and Brendan McLoughlin.
| * #17413: make sure settrace funcs get passed exception instances for 'value'.R David Murray2013-04-191-0/+23
| | | | | | | | Patch by Ingrid Cheung and Brendan McLoughlin.
* | #17790: merge with 3.3.Ezio Melotti2013-04-191-84/+31
|\ \ | |/
| * #17790: test_set now works with unittest test discovery. Patch by Zachary Ware.Ezio Melotti2013-04-191-84/+31
| |
* | #17789: merge with 3.3.Ezio Melotti2013-04-191-27/+12
|\ \ | |/
| * #17789: test_random now works with unittest test discovery. Patch by ↵Ezio Melotti2013-04-191-27/+12
| | | | | | | | Zachary Ware.
* | #17779: merge with 3.3.Ezio Melotti2013-04-191-5/+4
|\ \ | |/
| * #17779: test_osx_env now works with unittest test discovery. Patch by ↵Ezio Melotti2013-04-191-5/+4
| | | | | | | | Zachary Ware.
* | Issue #17741: Add ElementTree.IncrementalParser, an event-driven parser for ↵Antoine Pitrou2013-04-181-0/+130
| | | | | | | | non-blocking applications.
* | Issue #17555: Fix ForkAwareThreadLock so that size of after forkRichard Oudkerk2013-04-171-1/+31
|\ \ | |/ | | | | registry does not grow exponentially with generation of process.
| * Issue #17555: Fix ForkAwareThreadLock so that size of after forkRichard Oudkerk2013-04-171-1/+31
| | | | | | | | registry does not grow exponentially with generation of process.
| * Fix issue #17707: multiprocessing.Queue's get() method does not block for ↵Giampaolo Rodola'2013-04-171-0/+7
| | | | | | | | short timeouts.
* | Fix issue #17707: multiprocessing.Queue's get() method does not block for ↵Giampaolo Rodola'2013-04-171-0/+7
| | | | | | | | short timeouts.
* | #17766: merge with 3.3.Ezio Melotti2013-04-171-32/+14
|\ \ | |/
| * #17766: test_iterlen now works with unittest test discovery. Patch by ↵Ezio Melotti2013-04-171-32/+14
| | | | | | | | Zachary Ware.
* | Remove unused importBarry Warsaw2013-04-161-1/+0
|\ \ | |/
| * Remove unused import.Barry Warsaw2013-04-161-1/+0
| |
* | - Issue #17012: shutil.which() no longer fallbacks to the PATH environmentBarry Warsaw2013-04-161-0/+21
|\ \ | |/ | | | | variable if empty path argument is specified. Patch by Serhiy Storchaka.
| * - Issue #17012: shutil.which() no longer fallbacks to the PATH environmentBarry Warsaw2013-04-161-0/+21
| | | | | | | | variable if empty path argument is specified. Patch by Serhiy Storchaka.
* | Make C and Python implementations of pickle load STRING opcodes the same way.Alexandre Vassalotti2013-04-161-24/+29
| | | | | | | | | | | | | | | | | | | | | | | | | | The C version tried to remove trailing whitespace between the last quote and the newline character. I am not sure why it had this because pickle never generated such pickles---for this to happen repr(some_string) would need to return trailing whitespace. It was maybe there to make it easier for people to write pickles in text editors. Anyhow, the Python version doesn't do this so there is no point keeping this around anymore. Also, I've changed the exception raised when a bad pickle is encountered. Again this unlikely to make much difference to anyone though it does make testing slightly nicer for us.
* | Issue #17710: Fix pickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-0/+8
|\ \ | |/
| * Issue #17710: Fix pickle raising a SystemError on bogus input.Antoine Pitrou2013-04-151-0/+8
| |
* | Merge fix for #17731 from 3.3Nick Coghlan2013-04-151-0/+3
|\ \ | |/
| * Close #17731: Clean up properly in test_importNick Coghlan2013-04-151-0/+3
| |
* | Issue #17713: Added failure diagnostics to test.Vinay Sajip2013-04-151-1/+5
| |
* | Merge #17341: Include name in re error message about invalid group name.R David Murray2013-04-141-0/+11
|\ \ | |/ | | | | Patch by Jason Michalski.
| * #17341: Include name in re error message about invalid group name.R David Murray2013-04-141-0/+11
| | | | | | | | Patch by Jason Michalski.
* | add a newlineBrett Cannon2013-04-141-1/+1
| |
* | Issue #17244: Don't mask exceptions raised during the creation ofBrett Cannon2013-04-141-3/+14
| | | | | | | | | | | | bytecode files in py_compile. Thanks to Arfrever Frehtes Taifersar Arahesis for the bug report.
* | (Merge 3.3) Issue #17702: use assertRaises() for the unit testVictor Stinner2013-04-141-10/+4
|\ \ | |/
| * Issue #17702: use assertRaises() for the unit testVictor Stinner2013-04-141-10/+4
| |
* | (Merge 3.3) Close #17702: os.environ now raises KeyError with the originalVictor Stinner2013-04-141-0/+18
|\ \ | |/ | | | | | | environment variable name (str on UNIX), instead of using the encoded name (bytes on UNIX).
| * Close #17702: os.environ now raises KeyError with the original environmentVictor Stinner2013-04-141-0/+18
| | | | | | | | variable name (str on UNIX), instead of using the encoded name (bytes on UNIX).
* | Merge fix for #16163 from 3.3Nick Coghlan2013-04-141-0/+39
|\ \ | |/
| * Close issue #16163: handle submodules in pkgutil.iter_importersNick Coghlan2013-04-141-0/+39
| |
* | Issue #17713: additional tweak to test.Vinay Sajip2013-04-141-1/+1
| |
* | Closes #17713: Fixed bug in test_compute_rollover_weekly_attime.Vinay Sajip2013-04-141-26/+33
| |
* | merge with 3.3Georg Brandl2013-04-141-0/+8
|\ \ | |/
| * Closes #14462: allow any valid Python identifier in sre group names, as ↵Georg Brandl2013-04-141-0/+8
| | | | | | | | documented.
* | Merge 3.3Alexandre Vassalotti2013-04-141-2/+2
|\ \ | |/
| * Fix pickling test in test_memoryio.Alexandre Vassalotti2013-04-141-2/+2
| | | | | | | | | | The test was closing the orginal object instead the copy. This didn't result in visible failures because the loop range was incorrect as well.
* | remove pointless changeBenjamin Peterson2013-04-131-1/+1
| |
* | properly lookup the __round__ special method (closes #17722)Benjamin Peterson2013-04-131-1/+2
| |
* | Fix misindent. This would test half less possibilities.Antoine Pitrou2013-04-131-1/+1
| |
* | Issue #15480: Remove the deprecated and unused TYPE_INT64 code from marshal.Antoine Pitrou2013-04-131-27/+3
| | | | | | | | Initial patch by Daniel Riti.
* | Issue #17715: Merge fix from 3.3.Mark Dickinson2013-04-131-0/+6
|\ \ | |/
| * Issue #17715: Add missing NULL Check to PyNumber_Long.Mark Dickinson2013-04-131-0/+6
| |
* | Issue #17713: Test temporarily skipped while failure investigated.Vinay Sajip2013-04-131-0/+1
| |