- 23 Agu, 2002 13 kayıt (commit)
-
-
Guido van Rossum yazdı
the string/unicode method .replace() with a zero-lengt first argument. Inyeol contributed tests for this too.
-
Tim Peters yazdı
-
Raymond Hettinger yazdı
-
Tim Peters yazdı
-
Tim Peters yazdı
latter is what the code actually does.
-
Tim Peters yazdı
-
Fred Drake yazdı
Remove the third column in the tables since it isn't used.
-
Fred Drake yazdı
Move another entry so the boilerplate doesn't get mixed up with document-specific content.
-
Raymond Hettinger yazdı
-
Guido van Rossum yazdı
the element if necessary. Fixed by calling self.remove(element).
-
Guido van Rossum yazdı
required number of args is 0 or 1 -- were reversed. Also change "1" into "exactly one", the same words as used elsewhere for this condition.
-
Jack Jansen yazdı
to the list of places where pydoc looks for HTML documents.
-
Guido van Rossum yazdı
rather than a number of approximating regular expressions. Alas, it is 3-4 times slower. Let that be a challenge for the tokenize module.
-
- 22 Agu, 2002 27 kayıt (commit)
-
-
Jack Jansen yazdı
classic Python is gone.
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Jack Jansen yazdı
-
Greg Ward yazdı
any non-whitespace characters adjacent, not just \w.
-
Greg Ward yazdı
-
Greg Ward yazdı
we need to test TextWrapper._split().
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
into /--foo-/bar/ rather than /--/foo-/bar/. Needed for Optik and Docutils to handle Unix-style command-line options properly.
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
unittest.makeSuite() rather than loader.loadTestsFromTestCase().
-
Guido van Rossum yazdı
trailing whitespace.
-
Guido van Rossum yazdı
Expand the example to show some actual test functions, and a setUp() and tearDown() method.
-
Guido van Rossum yazdı
of dummy_test_TemporaryFile class; when NamedTemporaryFile and TemporaryFile are the same, simply don't add a test suite for TemporaryFile.
-
Guido van Rossum yazdı
test_main() that creates a suite and runs it. Don't mess with sys.path!!!
-
Greg Ward yazdı
em-dashes -- like this -- properly. (Also--like this. Although this usage may be incompatible with fixing bug #596434; we shall see.)
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
suite merging all test cases.
-
Guido van Rossum yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
-
Greg Ward yazdı
(tests) from test_funky_punc() to test_break_long() and test_long_words() to test_nobreak_long().
-
Greg Ward yazdı
-
Greg Ward yazdı
base class (WrapperTestCase) instead, and call it repeatedly in the methods that used to have a loop-over-subcases. Much simpler. Rename perennial temp variable 't' to 'text'.
-