summaryrefslogtreecommitdiffstats
path: root/Lib/test
Commit message (Expand)AuthorAgeFilesLines
* Add tests for new PyErr_NormalizeException() behaviorJeremy Hylton2001-09-261-0/+35
* Test case for SF bugs #463359 and #462937, added to test_grammar for lack ofThomas Wouters2001-09-262-0/+28
* Update the tests for the current incarnation of the email package, andBarry Warsaw2001-09-261-105/+198
* More test messages for test_email.pyBarry Warsaw2001-09-262-0/+135
* test_iterator(): Don't do a type comparison to see if it's anBarry Warsaw2001-09-251-1/+4
* Factor out the protect-from-exceptions helpers and make capture_events()Fred Drake2001-09-251-35/+65
* Guido points out that sys.__stdout__ is a bit bucket under IDLE. So keepTim Peters2001-09-252-1/+13
* test_support should be imported directly, not via test.test_support.Tim Peters2001-09-252-2/+2
* Get rid of the increasingly convoluted global tricks w/ sys.stdout, inTim Peters2001-09-252-28/+12
* - Provisional support for pickling new-style objects. (*)Guido van Rossum2001-09-252-1/+63
* Set sys.save_stdout (to sys.stdout), so doctest-using tests can be runGuido van Rossum2001-09-251-0/+2
* Change repr() of a new-style class to say <class 'ClassName'> ratherGuido van Rossum2001-09-252-4/+4
* Make __class__ assignment possible, when the object structures are theGuido van Rossum2001-09-251-0/+28
* Make properties discoverable from Python:Tim Peters2001-09-241-2/+28
* Added several new tests to check the behavior with respect to doctypeFred Drake2001-09-241-6/+77
* Adapt to use the test_main() approach.Fred Drake2001-09-241-1/+6
* Another comparison patch-up: comparing a type with a dynamic metatypeGuido van Rossum2001-09-241-0/+7
* Add more tests showing the relationship between exceptions raised & caughtFred Drake2001-09-241-9/+64
* Do the same thing to complex that I did to str: the rich comparisonGuido van Rossum2001-09-241-0/+15
* StringIO patch #462596: let's [c]StringIO accept read buffers onMarc-André Lemburg2001-09-241-8/+23
* Change string comparison so that it applies even when one (or both)Guido van Rossum2001-09-241-6/+6
* Fix the baffler that Tim reported: sometimes the repr() of an objectGuido van Rossum2001-09-241-2/+2
* 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
* New function classify_class_attrs(). As a number of SF bug reportsTim Peters2001-09-231-0/+201
* Add a function to compute a class's method resolution order. This isTim Peters2001-09-221-0/+20
* Since the most likely failure mode for an expected-output test is a changeTim Peters2001-09-221-15/+22
* 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-211-0/+4
* 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
* 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-201-1/+28
* 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
* 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