summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Collapse)AuthorAgeFilesLines
* condense with assertRaisesBenjamin Peterson2009-07-021-13/+2
|
* test that compile() accepts the future flagBenjamin Peterson2009-07-021-0/+3
|
* when print() gets unicode arguments, sep and end should be unicode by ↵Benjamin Peterson2009-07-021-6/+29
| | | | default #4618
* only order comparisons are removed in py3k #6119Benjamin Peterson2009-07-021-1/+10
|
* remove this test; a module level warning is enoughBenjamin Peterson2009-07-021-11/+0
|
* fix a few cases where automated fail -> assert translation messed upBenjamin Peterson2009-07-011-23/+23
| | | | Thanks Joe Amenta
* use assert* methods in test_unittestBenjamin Peterson2009-06-301-53/+53
|
* convert usage of fail* to assert*Benjamin Peterson2009-06-30191-3469/+3469
|
* Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes ↵Jesse Noller2009-06-301-1/+69
| | | | in processes
* Backport fix for buglet from py3kAntoine Pitrou2009-06-291-1/+2
|
* http://bugs.python.org/issue6267Kristján Valur Jónsson2009-06-281-14/+128
| | | | Cumulative patch to http and xmlrpc
* return locals and cells in get_locals() not bound globals, thoughBenjamin Peterson2009-06-281-1/+1
|
* #2016 Fix a crash in function call when the **kwargs dictionary is mutatedAmaury Forgeot d'Arc2009-06-251-0/+18
| | | | | | | during the function call setup. This even gives a slight speedup, probably because tuple allocation is faster than PyMem_NEW.
* Remove the ipaddr module per discussion on python-devAmaury Forgeot d'Arc2009-06-231-554/+0
|
* Issue 6329: Fix iteration for memoryviews.Raymond Hettinger2009-06-231-0/+6
|
* Fix issue 5230 by having pydoc's safeimport check to see if the importR. David Murray2009-06-231-0/+42
| | | | | error was thrown from itself in order to decide if the module can't be found. Thanks to Lucas Prado Melo for collaborating on the fix and tests.
* Issue #5450: Moved tests involving loading tk from Lib/test/test_tcl toGuilherme Polo2009-06-211-31/+0
| | | | | Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly.
* use closuresBenjamin Peterson2009-06-191-3/+3
|
* show that this one isn't usedBenjamin Peterson2009-06-191-1/+1
|
* add missing assertion #6313Benjamin Peterson2009-06-191-0/+1
|
* remove duplicate testBenjamin Peterson2009-06-191-9/+0
|
* #6276: Remove usage of nested() in favor of new with statement with multiple ↵Georg Brandl2009-06-181-3/+3
| | | | managers.
* Issue #6215: Fixed to use self.open() instead of open() or io.open().Hirokazu Yamamoto2009-06-171-18/+18
|
* Acknowledge the role of the MPFR library in creating cmath_testcases.txtMark Dickinson2009-06-161-0/+10
|
* don't mask encoding errors when decoding a string #6289Benjamin Peterson2009-06-161-0/+12
|
* #6227: Because of a wrong indentation, the test was not testing what it should.Amaury Forgeot d'Arc2009-06-142-1/+3
| | | | Ensure that the snippet in doctest_aliases actually contains aliases.
* when no module is given in a 'from' relative import, make ImportFrom.module NULLBenjamin Peterson2009-06-131-0/+4
|
* give a better error message when deleting ()Benjamin Peterson2009-06-131-0/+6
|
* allow importing from a module named None if it has an 'as' clauseBenjamin Peterson2009-06-131-0/+2
|
* prevent import statements from assigning to NoneBenjamin Peterson2009-06-131-0/+6
|
* keep the slice.step field as NULL if no step expression is givenBenjamin Peterson2009-06-131-0/+6
|
* Revert r73401 per Raymond Hettinger's request.Alexandre Vassalotti2009-06-121-2/+2
| | | | | | The rational is the change might cause imcompatiblity problems with PyYAML. In addition, Raymond wants to kept the different versions of collections synchronized across Python versions.
* Make pickling of OrderedDict instances more efficient.Alexandre Vassalotti2009-06-121-2/+2
|
* Re-enable testing of builtin open() in test_bufio in test_largefileAntoine Pitrou2009-06-122-4/+13
|
* Try to restore the old test_file and test_univnewlines as new, different filesAntoine Pitrou2009-06-124-95/+461
| | | | (with the right revisions this time, hopefully)
* Restore the old test_file.py (for the builtin file object) as a new file ↵Antoine Pitrou2009-06-121-0/+344
| | | | named test_file2k.py
* Issue #6215: backport the 3.1 io libAntoine Pitrou2009-06-128-972/+2077
|
* Missing import in test_curses, uncovered by some buildbots.Amaury Forgeot d'Arc2009-06-091-0/+1
| | | | (There are still a few test files that don't use the standard layout)
* Restored a test that was erroneously removed. See issue 6198.Eric Smith2009-06-091-1/+1
|
* remove error checks already done in set_context()Benjamin Peterson2009-06-083-5/+5
|
* backport r73273Benjamin Peterson2009-06-071-0/+21
|
* #6206: fix test__locale.Georg Brandl2009-06-061-2/+1
|
* Fix unittest discovery tests for Windows. Issue 6199Michael Foord2009-06-051-1/+3
|
* Removed tests so that test_float pass on Windows. See issue 6198.Eric Smith2009-06-051-21/+21
|
* Fix test__locale on windows (Backport of r72365)Hirokazu Yamamoto2009-06-051-4/+18
|
* Add test for #3684.Georg Brandl2009-06-041-0/+9
|
* Better name for "Ctor".Georg Brandl2009-06-041-2/+2
|
* Avoid PendingDeprecationWarnings emitted by deprecated unittest methods.Georg Brandl2009-06-031-2/+2
|
* Restore default testRunner argument in unittest.main to None. Issue 6177Michael Foord2009-06-021-0/+8
|
* Fixes issue6169: it was possible for two ipaddr network addresses to compareGregory P. Smith2009-06-021-12/+15
| | | | as both < and > than eachother.