summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
* Added a main() function and support to run this module as a script.Fred Drake2002-08-211-1/+19
* Refactor: Remove some code that was obsoleted when this module wasFred Drake2002-08-211-11/+17
* Now that __init__ transforms set elements, we know that all of theRaymond Hettinger2002-08-211-1/+3
* Add regression test for proper construction of sets of sets.Raymond Hettinger2002-08-211-0/+10
* Sped ._update() method by factoring try/except out of the inner loop.Raymond Hettinger2002-08-211-4/+5
* Ouch. The test suite *really* needs work!!!!! There were severalGuido van Rossum2002-08-211-46/+38
* Add Raymond H to the list of authors; add some XXX comments aboutGuido van Rossum2002-08-211-0/+9
* Fast size check for sub/super set testsRaymond Hettinger2002-08-211-0/+4
* Optimize try/except ordering in sets.py.Raymond Hettinger2002-08-211-25/+25
* Minor typoRaymond Hettinger2002-08-201-1/+1
* Rename popitem() to pop(). (An idea from SF patch 597444.)Guido van Rossum2002-08-202-3/+3
* Move __init__ from BaseSet into Set and ImmutableSet. This causes aGuido van Rossum2002-08-201-16/+28
* Typo repair. Please include in any backports.Guido van Rossum2002-08-201-1/+1
* Add a note reminding the reader that sets are not sequences. IGuido van Rossum2002-08-201-0/+10
* SF patch 595846 by Brett Cannon: Update environ for CGIHTTPServer.pyGuido van Rossum2002-08-201-2/+1
* Fix some endcase bugs in unicode rfind()/rindex() and endswith().Guido van Rossum2002-08-201-0/+6
* Bump version number to 2.3Barry Warsaw2002-08-201-1/+1
* Added tests for SF patch #597593, syntactically invalid Content-Type: headers.Barry Warsaw2002-08-201-2/+23
* get_content_type(), get_content_maintype(), get_content_subtype(): RFCBarry Warsaw2002-08-201-5/+5
* _dispatch(): Use get_content_maintype() and get_content_subtype() toBarry Warsaw2002-08-201-3/+2
* test_three_lines(): Test case reported by Andrew McNamara. Works inBarry Warsaw2002-08-201-0/+8
* Fix typo in __slots__ of ImmutableSet.Guido van Rossum2002-08-191-1/+1
* Set classes and their unit tests, from sandbox.Guido van Rossum2002-08-192-0/+1097
* Added __pow__(a,b) to the operator module. Completes the pattern ofRaymond Hettinger2002-08-191-0/+6
* Modify splituser() method to allow an @ in the userinfo field.Raymond Hettinger2002-08-181-1/+1
* OS/2 EMX behaves like Windows where file permissions are concernedAndrew MacIntyre2002-08-181-2/+2
* Get rid of _once(); inlining it takes less code. :-)Guido van Rossum2002-08-172-97/+41
* Patch by Zack W to make test_noinherit() more robust: spawn a PythonGuido van Rossum2002-08-172-28/+48
* Drop the number of test files to 100 for all the testsNeal Norwitz2002-08-161-4/+8
* SF bug 594996: OverflowError in random.randrangeTim Peters2002-08-161-4/+17
* check_events(): This was failing under -O, due to not expecting anyTim Peters2002-08-161-3/+0
* base64.decodestring('') should return '' instead of raising anBarry Warsaw2002-08-151-6/+1
* This is my patchMichael W. Hudson2002-08-155-42/+47
* forgot the best part - the new tests...Skip Montanaro2002-08-151-0/+32
* Docstring nits: The module is neither proposed nor new.Jeremy Hylton2002-08-141-1/+1
* More changes of DeprecationWarning to FutureWarning.Guido van Rossum2002-08-142-2/+2
* Explain use of currentThread() in _Condition methods.Jeremy Hylton2002-08-141-2/+2
* The filterwarnings() call here should be updated to filter outGuido van Rossum2002-08-141-1/+1
* Explain a little more.Jeremy Hylton2002-08-141-0/+1
* Explain a minor mystery.Jeremy Hylton2002-08-141-0/+1
* tempfile's mkstemp(): Changed last argument fromTim Peters2002-08-142-11/+11
* Patch #595014: Cygwin tempfile patchJason Tishler2002-08-141-3/+3
* Patch by Tim to shut up the compiler's DeprecationWarnings on theBarry Warsaw2002-08-141-18/+9
* test_many(): open only 100 temp files, not 1000. Some systems don'tGuido van Rossum2002-08-141-1/+1
* Check for trailing backslash. Fixes #593656.Martin v. Löwis2002-08-141-0/+1
* Patch #505705: Remove eval in pickle and cPickle.Martin v. Löwis2002-08-143-6/+36
* tightening up a few except: clausesSkip Montanaro2002-08-141-3/+3
* runtest(): I don't know why we don't just use TESTFN, but if we have toTim Peters2002-08-141-4/+5
* mkstemp(): Repaired error in docstring (the sense of the 'binary' flagTim Peters2002-08-141-2/+2
* mkstemp(): The optional "binary" argument is clearly intended to be aTim Peters2002-08-131-1/+1