| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | condense with assertRaises | Benjamin Peterson | 2009-07-02 | 1 | -13/+2 |
| | | |||||
| * | test that compile() accepts the future flag | Benjamin Peterson | 2009-07-02 | 1 | -0/+3 |
| | | |||||
| * | when print() gets unicode arguments, sep and end should be unicode by ↵ | Benjamin Peterson | 2009-07-02 | 1 | -6/+29 |
| | | | | | default #4618 | ||||
| * | only order comparisons are removed in py3k #6119 | Benjamin Peterson | 2009-07-02 | 1 | -1/+10 |
| | | |||||
| * | remove this test; a module level warning is enough | Benjamin Peterson | 2009-07-02 | 1 | -11/+0 |
| | | |||||
| * | fix a few cases where automated fail -> assert translation messed up | Benjamin Peterson | 2009-07-01 | 1 | -23/+23 |
| | | | | | Thanks Joe Amenta | ||||
| * | use assert* methods in test_unittest | Benjamin Peterson | 2009-06-30 | 1 | -53/+53 |
| | | |||||
| * | convert usage of fail* to assert* | Benjamin Peterson | 2009-06-30 | 191 | -3469/+3469 |
| | | |||||
| * | Resolves issues 5155, 5313, 5331 - bad file descriptor error with processes ↵ | Jesse Noller | 2009-06-30 | 1 | -1/+69 |
| | | | | | in processes | ||||
| * | Backport fix for buglet from py3k | Antoine Pitrou | 2009-06-29 | 1 | -1/+2 |
| | | |||||
| * | http://bugs.python.org/issue6267 | Kristján Valur Jónsson | 2009-06-28 | 1 | -14/+128 |
| | | | | | Cumulative patch to http and xmlrpc | ||||
| * | return locals and cells in get_locals() not bound globals, though | Benjamin Peterson | 2009-06-28 | 1 | -1/+1 |
| | | |||||
| * | #2016 Fix a crash in function call when the **kwargs dictionary is mutated | Amaury Forgeot d'Arc | 2009-06-25 | 1 | -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-dev | Amaury Forgeot d'Arc | 2009-06-23 | 1 | -554/+0 |
| | | |||||
| * | Issue 6329: Fix iteration for memoryviews. | Raymond Hettinger | 2009-06-23 | 1 | -0/+6 |
| | | |||||
| * | Fix issue 5230 by having pydoc's safeimport check to see if the import | R. David Murray | 2009-06-23 | 1 | -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 to | Guilherme Polo | 2009-06-21 | 1 | -31/+0 |
| | | | | | | Lib/lib-tk/test/test_tkinter/test_loadtk in order to follow the behaviour of test_ttkguionly. | ||||
| * | use closures | Benjamin Peterson | 2009-06-19 | 1 | -3/+3 |
| | | |||||
| * | show that this one isn't used | Benjamin Peterson | 2009-06-19 | 1 | -1/+1 |
| | | |||||
| * | add missing assertion #6313 | Benjamin Peterson | 2009-06-19 | 1 | -0/+1 |
| | | |||||
| * | remove duplicate test | Benjamin Peterson | 2009-06-19 | 1 | -9/+0 |
| | | |||||
| * | #6276: Remove usage of nested() in favor of new with statement with multiple ↵ | Georg Brandl | 2009-06-18 | 1 | -3/+3 |
| | | | | | managers. | ||||
| * | Issue #6215: Fixed to use self.open() instead of open() or io.open(). | Hirokazu Yamamoto | 2009-06-17 | 1 | -18/+18 |
| | | |||||
| * | Acknowledge the role of the MPFR library in creating cmath_testcases.txt | Mark Dickinson | 2009-06-16 | 1 | -0/+10 |
| | | |||||
| * | don't mask encoding errors when decoding a string #6289 | Benjamin Peterson | 2009-06-16 | 1 | -0/+12 |
| | | |||||
| * | #6227: Because of a wrong indentation, the test was not testing what it should. | Amaury Forgeot d'Arc | 2009-06-14 | 2 | -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 NULL | Benjamin Peterson | 2009-06-13 | 1 | -0/+4 |
| | | |||||
| * | give a better error message when deleting () | Benjamin Peterson | 2009-06-13 | 1 | -0/+6 |
| | | |||||
| * | allow importing from a module named None if it has an 'as' clause | Benjamin Peterson | 2009-06-13 | 1 | -0/+2 |
| | | |||||
| * | prevent import statements from assigning to None | Benjamin Peterson | 2009-06-13 | 1 | -0/+6 |
| | | |||||
| * | keep the slice.step field as NULL if no step expression is given | Benjamin Peterson | 2009-06-13 | 1 | -0/+6 |
| | | |||||
| * | Revert r73401 per Raymond Hettinger's request. | Alexandre Vassalotti | 2009-06-12 | 1 | -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 Vassalotti | 2009-06-12 | 1 | -2/+2 |
| | | |||||
| * | Re-enable testing of builtin open() in test_bufio in test_largefile | Antoine Pitrou | 2009-06-12 | 2 | -4/+13 |
| | | |||||
| * | Try to restore the old test_file and test_univnewlines as new, different files | Antoine Pitrou | 2009-06-12 | 4 | -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 Pitrou | 2009-06-12 | 1 | -0/+344 |
| | | | | | named test_file2k.py | ||||
| * | Issue #6215: backport the 3.1 io lib | Antoine Pitrou | 2009-06-12 | 8 | -972/+2077 |
| | | |||||
| * | Missing import in test_curses, uncovered by some buildbots. | Amaury Forgeot d'Arc | 2009-06-09 | 1 | -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 Smith | 2009-06-09 | 1 | -1/+1 |
| | | |||||
| * | remove error checks already done in set_context() | Benjamin Peterson | 2009-06-08 | 3 | -5/+5 |
| | | |||||
| * | backport r73273 | Benjamin Peterson | 2009-06-07 | 1 | -0/+21 |
| | | |||||
| * | #6206: fix test__locale. | Georg Brandl | 2009-06-06 | 1 | -2/+1 |
| | | |||||
| * | Fix unittest discovery tests for Windows. Issue 6199 | Michael Foord | 2009-06-05 | 1 | -1/+3 |
| | | |||||
| * | Removed tests so that test_float pass on Windows. See issue 6198. | Eric Smith | 2009-06-05 | 1 | -21/+21 |
| | | |||||
| * | Fix test__locale on windows (Backport of r72365) | Hirokazu Yamamoto | 2009-06-05 | 1 | -4/+18 |
| | | |||||
| * | Add test for #3684. | Georg Brandl | 2009-06-04 | 1 | -0/+9 |
| | | |||||
| * | Better name for "Ctor". | Georg Brandl | 2009-06-04 | 1 | -2/+2 |
| | | |||||
| * | Avoid PendingDeprecationWarnings emitted by deprecated unittest methods. | Georg Brandl | 2009-06-03 | 1 | -2/+2 |
| | | |||||
| * | Restore default testRunner argument in unittest.main to None. Issue 6177 | Michael Foord | 2009-06-02 | 1 | -0/+8 |
| | | |||||
| * | Fixes issue6169: it was possible for two ipaddr network addresses to compare | Gregory P. Smith | 2009-06-02 | 1 | -12/+15 |
| | | | | | as both < and > than eachother. | ||||
