| Commit message (Expand) | Author | Age | Files | Lines |
* | Changed doctest to run tests in alphabetic order of name. | Tim Peters | 2001-03-21 | 2 | -96/+96 |
|
|
* | Test that traceback module works with SyntaxErrors with or without carets. | Jeremy Hylton | 2001-03-21 | 1 | -0/+1 |
|
|
* | Add test cases for the fnmatch module. | Fred Drake | 2001-03-21 | 1 | -0/+1 |
|
|
* | Add tests for recent changes: | Jeremy Hylton | 2001-03-21 | 1 | -0/+2 |
|
|
* | Add test for a list comprehension that is nested in the left-hand part | Jeremy Hylton | 2001-03-19 | 1 | -0/+1 |
|
|
* | Repair test_doctest's expected-output file (Guido added some new output). | Tim Peters | 2001-03-18 | 1 | -0/+2 |
|
|
* | SF bug [ #409448 ] Complex division is braindead | Tim Peters | 2001-03-18 | 1 | -0/+1 |
|
|
* | Add test to verify that nested functions with free variables don't | Jeremy Hylton | 2001-03-13 | 1 | -0/+1 |
|
|
* | test_global was broken by some recent checkin. Repairing. | Tim Peters | 2001-03-02 | 1 | -1/+1 |
|
|
* | Test interaction of global and nested scopes -- thanks to Samuele Pedroni. | Guido van Rossum | 2001-03-01 | 1 | -0/+1 |
|
|
* | Add test case for global stmt at module level. | Jeremy Hylton | 2001-02-28 | 1 | -0/+1 |
|
|
* | update output to reflect exception that is now raised | Jeremy Hylton | 2001-02-28 | 1 | -3/+3 |
|
|
* | Add regression test for future statements. This adds eight files, but | Jeremy Hylton | 2001-02-28 | 1 | -0/+8 |
|
|
* | verify that warnings are issued for bogus uses of global | Jeremy Hylton | 2001-02-28 | 1 | -0/+4 |
|
|
* | Patch #403985: Add support for weak-keyed dictionaries | Martin v. Löwis | 2001-02-27 | 1 | -0/+4 |
|
|
* | inspect: a module for getting information out of live Python objects | Ka-Ping Yee | 2001-02-27 | 1 | -0/+1 |
|
|
* | Make sure ConfigParser uses .optionxform() consistently; this affects | Fred Drake | 2001-02-26 | 1 | -0/+1 |
|
|
* | Add __future__.py to std library, + dull test to verify that assignments | Tim Peters | 2001-02-26 | 1 | -0/+1 |
|
|
* | Add test case from bug #124981: zlib decompress of sync-flushed data | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+1 |
|
|
* | Added test for patch #103473: test an unquoted cookie value containing '=' | Andrew M. Kuchling | 2001-02-21 | 1 | -0/+4 |
|
|
* | SF patch #103749: implicit tuple + default arg | Jeremy Hylton | 2001-02-19 | 1 | -0/+7 |
|
|
* | Add simple section for assert, including assert w/ lambdas | Jeremy Hylton | 2001-02-19 | 1 | -0/+1 |
|
|
* | Add test for syntax error on "x = 1 + 1". | Jeremy Hylton | 2001-02-19 | 1 | -5/+0 |
|
|
* | Change doctest exception example to one whose detail hasn't changed since 1.5.2. | Tim Peters | 2001-02-14 | 1 | -2/+2 |
|
|
* | Teach doctest about newer "(most recent call last)" traceback spelling. | Tim Peters | 2001-02-13 | 1 | -1/+1 |
|
|
* | Added options that use square brackets in their names; this ensures that | Fred Drake | 2001-02-12 | 1 | -46/+1 |
|
|
* | Moved SequenceMatcher from ndiff into new std library module difflib.py. | Tim Peters | 2001-02-10 | 1 | -0/+280 |
|
|
* | Add std test for doctest. | Tim Peters | 2001-02-10 | 1 | -0/+299 |
|
|
* | In O_writelines: Replace use of string.joinfields with "".join. | Jeremy Hylton | 2001-02-09 | 1 | -0/+2 |
|
|
* | update test cases for recent compiler changes: exec/import * in nested | Jeremy Hylton | 2001-02-09 | 2 | -1/+1 |
|
|
* | Fix test 9 (caught by ?!ng) | Jeremy Hylton | 2001-02-05 | 1 | -0/+1 |
|
|
* | Add minimal interface to symtable: _symtable module. | Jeremy Hylton | 2001-02-02 | 1 | -0/+1 |
|
|
* | Patch derived from Trent's 101162: a Python/C API testing framework. | Tim Peters | 2001-02-02 | 1 | -0/+1 |
|
|
* | Allow 'continue' inside 'try' clause | Jeremy Hylton | 2001-02-01 | 2 | -5/+3 |
|
|
* | Undo recent change that banned using import to bind a global, as per | Jeremy Hylton | 2001-02-01 | 1 | -1/+0 |
|
|
* | PEP 205, Weak References -- initial checkin. | Fred Drake | 2001-02-01 | 1 | -0/+21 |
|
|
* | add test for illegal imports | Jeremy Hylton | 2001-01-30 | 1 | -0/+2 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+2 |
|
|
* | PEP 227 implementation | Jeremy Hylton | 2001-01-25 | 1 | -0/+13 |
|
|
* | add extra tests to verify that co_varnames is being set up properly | Jeremy Hylton | 2001-01-25 | 1 | -2/+4 |
|
|
* | Fix the test output, now that escapes in repr() of string and Unicode | Guido van Rossum | 2001-01-24 | 2 | -6/+6 |
|
|
* | Fix the test output, now that escapes in repr() of string and Unicode | Guido van Rossum | 2001-01-24 | 1 | -3/+3 |
|
|
* | Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings. | Ka-Ping Yee | 2001-01-24 | 3 | -162/+162 |
|
|
* | Add simple test of list comprehension that uses a name that isn't | Jeremy Hylton | 2001-01-23 | 1 | -0/+1 |
|
|
* | Reorganize pickle/cPickle testing so the tests pass regardless of the order | Tim Peters | 2001-01-22 | 1 | -12/+0 |
|
|
* | Patch #103343: Allow the important test_pkg to succeed under Jython. | Tim Peters | 2001-01-21 | 1 | -3/+3 |
|
|
* | Patch #103344: Sort dicts from extcall for easier comparison with Jython. | Tim Peters | 2001-01-21 | 1 | -36/+36 |
|
|
* | added __all__ lists to a number of Python modules | Skip Montanaro | 2001-01-20 | 1 | -0/+1 |
|
|
* | Now that Marc-Andre has retracted unistr(), remove the tests. | Guido van Rossum | 2001-01-19 | 1 | -1/+0 |
|
|
* | improved the ucnhash test a bit | Fredrik Lundh | 2001-01-19 | 1 | -0/+3 |
|
|