summaryrefslogtreecommitdiffstats
path: root/Lib
Commit message (Expand)AuthorAgeFilesLines
...
* Add test_unix_options() to WrapTestCase to test for SF bug #596434.Greg Ward2002-08-221-0/+28
* Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splitsGreg Ward2002-08-221-1/+1
* Standardize behavior: no docstrings in test functions.Guido van Rossum2002-08-222-18/+17
* Standardize behavior: no docstrings in test functions. Also useGuido van Rossum2002-08-221-6/+4
* Standardize behavior: no docstrings in test functions. Also stripGuido van Rossum2002-08-221-16/+16
* Document that docstrings are verboten for test functions.Guido van Rossum2002-08-221-6/+34
* Standardize behavior: no docstrings in test functions. Also get ridGuido van Rossum2002-08-221-42/+37
* Standardize behavior: no docstrings in test functions; add a properGuido van Rossum2002-08-221-46/+44
* Add test_em_dash() to WrapTestCase to make sure that TextWrapper handlesGreg Ward2002-08-221-2/+53
* Standardize behavior: no docstrings in test functions.Guido van Rossum2002-08-222-10/+13
* Standardize behavior: create a single suite merging all test cases.Guido van Rossum2002-08-221-3/+5
* Standardize behavior: no docstrings in test functions; create a singleGuido van Rossum2002-08-221-13/+19
* Made it more readable.Guido van Rossum2002-08-221-46/+30
* Simplification/cleanup in IndentTestCases.Greg Ward2002-08-221-16/+10
* Factor LongWordTestCase out of WrapTestCase, and rename its methodsGreg Ward2002-08-221-13/+14
* Rename base test case class to (yawn) BaseTestCase.Greg Ward2002-08-221-3/+3
* Ditch the whole loop-over-subcases way of working. Add check_wrap() toGreg Ward2002-08-221-74/+59
* Simplify and reformat the use of 'subcases' lists (and followingGreg Ward2002-08-221-52/+32
* Add comment header block.Greg Ward2002-08-221-12/+10
* Conform to standards documented in README:Greg Ward2002-08-221-15/+19
* Test script for the textwrap module. Kindly provided by Peter HansenGreg Ward2002-08-221-0/+261
* On Windows, make sure SocketType is the same as socket. (SF bugGuido van Rossum2002-08-221-1/+1
* Change the binary operators |, &, ^, - to return NotImplemented ratherGuido van Rossum2002-08-221-14/+40
* 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