summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Undo last checkin, since it duplicated the code.Martin v. Löwis2001-10-011-25/+0
* SF patch #462628 (Travers Naran) NNTPLib supports saving BODY to a file.Guido van Rossum2001-10-011-19/+37
* Patch #426880: Implement Listbox itemcget and itemconfigure.Martin v. Löwis2001-10-011-0/+25
* Patch #462190, patch #464070: Support quoted printable in the binascii module.Martin v. Löwis2001-09-302-11/+57
* Properly detect recursive structures. Adopted from patch #465298.Martin v. Löwis2001-09-301-0/+6
* For Python 2.2, do not use __getattr__(), only use computed properties.Fred Drake2001-09-291-31/+61
* _dispatch(): Do no re-define the resolve_dotted_atttribute() functionFred Drake2001-09-291-21/+17
* Add a few ``__dynamic__ = 0'' lines in classes that need to preserveGuido van Rossum2001-09-291-3/+7
* It's a fact: for binary operators, *under certain circumstances*,Guido van Rossum2001-09-281-1/+36
* Update the xml.dom.minidom tests to cover the DOM-compliant parts of theFred Drake2001-09-282-2/+31
* Tighten up the new NodeList implementation.Fred Drake2001-09-281-7/+7
* Remove an infelicitous space.Fred Drake2001-09-281-1/+1
* regrtest's -g option stopped working, during the changes to improveTim Peters2001-09-281-1/+1
* Reflect recent refinements of the regression testing framework.Fred Drake2001-09-281-9/+33
* Clean up circular references in the Weak*Dictionary classes; this avoidsFred Drake2001-09-281-11/+14
* Add complex to the dispatch tables, to avoid going through the wholeGuido van Rossum2001-09-281-0/+8
* Changes to copy() and deepcopy() in copy.py to support __reduce__ as aGuido van Rossum2001-09-283-9/+91
* For Python 2.2 and newer, actually support the full NodeList interface byFred Drake2001-09-281-2/+19
* Change the sense of a test in how the profiler interprets exception events.Fred Drake2001-09-271-1/+1
* Fix comment typoAndrew M. Kuchling2001-09-271-1/+1
* docroutine() (both instances): Docstrings for class methods weren'tTim Peters2001-09-271-2/+0
* List class attrs in MRO order of defining class instead of by alphabeticTim Peters2001-09-271-23/+12
* Removed no-longer-true comment about pydoc working under all versions ofTim Peters2001-09-261-4/+0
* Display a class's method resolution order, if it's non-trivial. "Trivial"Tim Peters2001-09-261-1/+22
* More test cases, including something that simulates what the profilerFred Drake2001-09-261-5/+66
* A file just to look at (using pydoc).Tim Peters2001-09-261-0/+297
* Add tests for new PyErr_NormalizeException() behaviorJeremy Hylton2001-09-261-0/+35
* Don't export generators future infoJeremy Hylton2001-09-261-1/+1
* 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
* _parsebody(): Use get_boundary() and get_type().Barry Warsaw2001-09-261-10/+16
* has_key(): Implement in terms of get().Barry Warsaw2001-09-261-33/+58
* __init__(): Arguments major renamed to maintype and minor renamed toBarry Warsaw2001-09-261-3/+3
* Updated docstrings. Also,Barry Warsaw2001-09-261-7/+7
* Image.py and class Image => MIMEImage.py and MIMEImageBarry Warsaw2001-09-264-36/+40
* In class Generator:Barry Warsaw2001-09-261-5/+32
* cosmeticBarry Warsaw2001-09-261-0/+1
* SF [#463737] Add types.CallableIterTypeTim Peters2001-09-251-3/+5
* 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
* _reconstructor(): there's no need for tricks with assignment toGuido van Rossum2001-09-251-9/+2
* 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-253-1/+92
* Set sys.save_stdout (to sys.stdout), so doctest-using tests can be runGuido van Rossum2001-09-251-0/+2
* + Display property functions in the same order they're specified toTim Peters2001-09-251-7/+7
* 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