summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Generalize file.writelines() to allow iterable objects.Tim Peters2001-09-231-0/+53
* The test data (mostly example messages) for the email package testBarry Warsaw2001-09-2316-0/+643
* An extensive test suite for the email package.Barry Warsaw2001-09-231-0/+797
* The email package version 1.0, prototyped as mimelibBarry Warsaw2001-09-2312-0/+1302
* New function classify_class_attrs(). As a number of SF bug reportsTim Peters2001-09-232-0/+286
* Make difflib.ndiff() and difflib.Differ.compare() generators. ThisTim Peters2001-09-221-53/+47
* Add a function to compute a class's method resolution order. This isTim Peters2001-09-222-0/+38
* Since the most likely failure mode for an expected-output test is a changeTim Peters2001-09-221-15/+22
* __iter__(): New method so that StringIO's can participate in theBarry Warsaw2001-09-221-0/+3
* Converted test_StringIO.py to use unittest, soBarry Warsaw2001-09-222-62/+71
* Start of a test to make sure the profiler/tracer support in the coreFred Drake2001-09-221-0/+110
* Add the __getattr__ hook back. The rules are now:Guido van Rossum2001-09-211-5/+4
* reportdiff(): print a "plain diff" style diff.Guido van Rossum2001-09-211-4/+30
* Oops. I didn't expect that some tests (test_cookie) have expectedGuido van Rossum2001-09-212-9/+3
* Change the way unexpected output is reported: rather than stopping atGuido van Rossum2001-09-212-94/+52
* Change the name of the __getattr__ special method for new-styleGuido van Rossum2001-09-212-7/+7
* Make these modules work when Python is compiled without Unicode support.Guido van Rossum2001-09-213-5/+18
* Add tests for repr() of strings containing string quotes as well.Guido van Rossum2001-09-211-0/+4
* Test basic functioning of unicode repr(). (If this breaks Jython,Guido van Rossum2001-09-211-0/+11
* Add a small test to verify that member and getset descriptors now haveGuido van Rossum2001-09-201-0/+8
* Change testdescr.py to use the test_main() approach.Guido van Rossum2001-09-201-4/+4
* Change the PyUnit-based tests to use the test_main() approach. ThisFred Drake2001-09-2034-39/+229
* Fix Unicode .join() method to raise a TypeError for sequenceMarc-André Lemburg2001-09-201-1/+0
* Update test output after the unicode() change.Marc-André Lemburg2001-09-201-0/+1
* Python part of the UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-201-0/+27
* Implement the changes proposed in patch #413333. unicode(obj) nowMarc-André Lemburg2001-09-201-0/+5
* Patch #435971: UTF-7 codec by Brian Quinlan.Marc-André Lemburg2001-09-202-1/+32
* Patch #462635 by Andrew Kuchling correcting bugs in the newMarc-André Lemburg2001-09-205-11/+21
* run_suite(): Oops, update a docstring.Barry Warsaw2001-09-201-1/+1
* run_suite(): Factor this out of run_unittest() for tests that buildBarry Warsaw2001-09-201-2/+7
* Since inspect.isfunction(obj) is a precondition for callingTim Peters2001-09-201-6/+6
* Ensure that isfunction(obj) and (the new) ismethoddescriptor(obj) neverTim Peters2001-09-201-5/+8
* After much thrashing, I believe this is a truly minimal patch to teachTim Peters2001-09-202-4/+27
* Patch #461321: Support None as a timeout in poll2 and poll3.Martin v. Löwis2001-09-191-4/+6
* Keep tabnanny happy.Guido van Rossum2001-09-191-1/+1
* Fixed search function error reporting in the encodings packageMarc-André Lemburg2001-09-191-7/+11
* Added new helpers for easy access to codecs. Docs will follow.Marc-André Lemburg2001-09-191-0/+42
* Patch to bug #461754: CDATA should not undergo entity subst.Martin v. Löwis2001-09-191-1/+1
* Add additional coercion support for "self subtypes" to int, long,Guido van Rossum2001-09-191-0/+28
* Enable two checks for comparing a complex to a complex subtypeGuido van Rossum2001-09-191-3/+4
* Enable some comparison tests that failed before. Still having problemsTim Peters2001-09-181-3/+3
* Add a similar test for rich comparisons.Guido van Rossum2001-09-181-1/+67
* fixed #449964: sre.sub raises an exception if the template contains aFredrik Lundh2001-09-183-9/+14
* Hopefully fix 3-way comparisons. This unfortunately adds yet anotherGuido van Rossum2001-09-181-0/+28
* Get rid of a superfluous space after "--" in the message printed for aGuido van Rossum2001-09-181-2/+1
* Fix typo in commentAndrew M. Kuchling2001-09-181-1/+1
* Test for the safety check in wrap_cmpfunc().Guido van Rossum2001-09-181-0/+15
* an SRE bugfix a day keeps Guido away...Fredrik Lundh2001-09-182-4/+11
* SF bug #417176 (Martijn Pieters): MultiFile.read() includes CRLFGuido van Rossum2001-09-181-1/+13
* softspace(): be prepared to catch AttributeError as well as TypeErrorGuido van Rossum2001-09-181-1/+2