- 37faed2 Sped union by a factor of 3-4. by Tim Peters · 22 years ago
- d33e6be Sped intersection by large factors (3-5x faster than before on sets of by Tim Peters · 22 years ago
- 4a2f91e Added a clue about why xyz_update isn't the same as __xyz__. by Tim Peters · 22 years ago
- ea76c98 Implemented <, <=, >, >= for sets, giving subset and proper-subset by Tim Peters · 22 years ago
- 93d8d48 TestSubset(): Generalized the framework to support testing upcoming by Tim Peters · 22 years ago
- 4127e91 Rewrote all remaining assert stmts. by Tim Peters · 22 years ago
- 62c6243 Simplified construction of the test suite. by Tim Peters · 22 years ago
- de830ca Simplified code building sets of characters. by Tim Peters · 22 years ago
- a777799 Ack! Virtually every test here relied on an assert stmt. assert stmts by Tim Peters · 22 years ago
- 0bbb308 Simplified the setup for is-subset testing. by Tim Peters · 22 years ago
- 4924db1 Record a clue about why __or__ is not union, etc. by Tim Peters · 22 years ago
- c8f8034 Replace 0 with False to match working in documentation. SF 599681. by Raymond Hettinger · 22 years ago
- adc6384 1. Revert subprocess environment clearing, will restart subprocess by Kurt B. Kaiser · 22 years ago
- a552e3a Improve exception handling across rpc interface Modified Files: rpc.py by Kurt B. Kaiser · 22 years ago
- e87ab3f Removed < <= > >= from the API. Implemented as comparisons of the by Raymond Hettinger · 22 years ago
- 9d6897a Speed up the most egregious "if token in (long tuple)" cases by using by Guido van Rossum · 22 years ago
- 1b9f5d4 At Tim Peter's suggestion, propagated GvR's binary operator changes to by Raymond Hettinger · 22 years ago
- d501851 Since instances of _TemporarilyImmutableSet are always thrown away by Raymond Hettinger · 22 years ago
- 045e51a Expanded tests for sets of sets. by Raymond Hettinger · 22 years ago
- fa1480f 1. Removed module self test in favor of unittests -- Timbot's suggestion. by Raymond Hettinger · 22 years ago
- 53506be pop() docstring: this isn't a randomly-chosen element, it's merely by Tim Peters · 22 years ago
- d06d030 Comment repair. by Tim Peters · 22 years ago
- 2023c9b Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do the by Guido van Rossum · 22 years ago
- 8b1a6d6 Code by Inyeol Lee, submitted to SF bug 595350, to implement by Guido van Rossum · 22 years ago
- 280488b Whitespace normalization. by Tim Peters · 22 years ago
- 7c7efe9 Got rid of the toy _Set class, in favor of sets.Set. by Tim Peters · 22 years ago
- e399d08 RH pointed out that discard(element) doesn't do the transformation on by Guido van Rossum · 22 years ago
- b2628b0 Added the standard MacOSX location for documentation inside a framework by Jack Jansen · 22 years ago
- 040d7ca Rewritten using the tokenize module, which gives us a real tokenizer by Guido van Rossum · 22 years ago
- e3bd104 Tweak wordsep_re again: this time to recognize an em-dash with by Greg Ward · 22 years ago
- c6edb37 Test an em-dash with adjacent punctuation. by Greg Ward · 22 years ago
- 715debd Factored out BaseTestCase.check_split() method -- use it wherever by Greg Ward · 22 years ago
- 24a1c9c Test _split() method in test_unix_options(). by Greg Ward · 22 years ago
- 34f995b Add test_unix_options() to WrapTestCase to test for SF bug #596434. by Greg Ward · 22 years ago
- cce4d67 Fix SF bug #596434: tweak wordsep_re so "--foo-bar" now splits by Greg Ward · 22 years ago
- ae46931 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 22 years ago
- 9eee554 Standardize behavior: no docstrings in test functions. Also use by Guido van Rossum · 22 years ago
- 327af77 Standardize behavior: no docstrings in test functions. Also strip by Guido van Rossum · 22 years ago
- 1c48654 Document that docstrings are verboten for test functions. by Guido van Rossum · 22 years ago
- 8ccd9b6 Standardize behavior: no docstrings in test functions. Also get rid by Guido van Rossum · 22 years ago
- a5ce2e8 Standardize behavior: no docstrings in test functions; add a proper by Guido van Rossum · 22 years ago
- 9ad15a3 Add test_em_dash() to WrapTestCase to make sure that TextWrapper handles by Greg Ward · 22 years ago
- 32c2ae7 Standardize behavior: no docstrings in test functions. by Guido van Rossum · 22 years ago
- 2e8bba5 Standardize behavior: create a single suite merging all test cases. by Guido van Rossum · 22 years ago
- 7e8fdba Standardize behavior: no docstrings in test functions; create a single by Guido van Rossum · 22 years ago
- cb68258 Made it more readable. by Guido van Rossum · 22 years ago
- f69d3c9 Simplification/cleanup in IndentTestCases. by Greg Ward · 22 years ago
- fd030e4 Factor LongWordTestCase out of WrapTestCase, and rename its methods by Greg Ward · 22 years ago
- 13c53c6 Rename base test case class to (yawn) BaseTestCase. by Greg Ward · 22 years ago
- ee41384 Ditch the whole loop-over-subcases way of working. Add check_wrap() to by Greg Ward · 22 years ago
- 9ebba9a Simplify and reformat the use of 'subcases' lists (and following by Greg Ward · 22 years ago
- 3dc94e1 Add comment header block. by Greg Ward · 22 years ago
- f676578 Conform to standards documented in README: by Greg Ward · 22 years ago
- 90c0b07 Test script for the textwrap module. Kindly provided by Peter Hansen by Greg Ward · 22 years ago
- dbfb121 On Windows, make sure SocketType is the same as socket. (SF bug 598097) by Guido van Rossum · 22 years ago
- dc61cdf Change the binary operators |, &, ^, - to return NotImplemented rather by Guido van Rossum · 22 years ago
- 61cf440 Added a main() function and support to run this module as a script. by Fred Drake · 22 years ago
- a96f1a3 Refactor: Remove some code that was obsoleted when this module was by Fred Drake · 22 years ago
- d9c9151 Now that __init__ transforms set elements, we know that all of the by Raymond Hettinger · 22 years ago
- c3e61e5 Add regression test for proper construction of sets of sets. by Raymond Hettinger · 22 years ago
- 80d21af Sped ._update() method by factoring try/except out of the inner loop. by Raymond Hettinger · 22 years ago
- 9f87293 Ouch. The test suite *really* needs work!!!!! There were several by Guido van Rossum · 22 years ago
- 2658822 Add Raymond H to the list of authors; add some XXX comments about by Guido van Rossum · 22 years ago
- 43db0d6 Fast size check for sub/super set tests by Raymond Hettinger · 22 years ago
- de6d697 Optimize try/except ordering in sets.py. by Raymond Hettinger · 22 years ago
- ede3a0d Minor typo by Raymond Hettinger · 22 years ago
- c9196bc Rename popitem() to pop(). (An idea from SF patch 597444.) by Guido van Rossum · 22 years ago
- 5033b36 Move __init__ from BaseSet into Set and ImmutableSet. This causes a by Guido van Rossum · 22 years ago
- e3ec296 Typo repair. Please include in any backports. by Guido van Rossum · 22 years ago
- 290f187 Add a note reminding the reader that sets are not sequences. I by Guido van Rossum · 22 years ago
- 0bd7832 SF patch 595846 by Brett Cannon: Update environ for CGIHTTPServer.py by Guido van Rossum · 22 years ago
- 76afbd9 Fix some endcase bugs in unicode rfind()/rindex() and endswith(). by Guido van Rossum · 22 years ago
- 4d5ef6a Bump version number to 2.3 by Barry Warsaw · 22 years ago
- 3328136 Added tests for SF patch #597593, syntactically invalid Content-Type: headers. by Barry Warsaw · 22 years ago
- f36d804 get_content_type(), get_content_maintype(), get_content_subtype(): RFC by Barry Warsaw · 22 years ago
- dfea3b3 _dispatch(): Use get_content_maintype() and get_content_subtype() to by Barry Warsaw · 22 years ago
- b404bb7 test_three_lines(): Test case reported by Andrew McNamara. Works in by Barry Warsaw · 22 years ago
- 0b650d7 Fix typo in __slots__ of ImmutableSet. by Guido van Rossum · 22 years ago
- d6cf3af Set classes and their unit tests, from sandbox. by Guido van Rossum · 22 years ago
- 5959c55 Added __pow__(a,b) to the operator module. Completes the pattern of by Raymond Hettinger · 22 years ago
- f2e45dd Modify splituser() method to allow an @ in the userinfo field. by Raymond Hettinger · 22 years ago
- 1d0eeec OS/2 EMX behaves like Windows where file permissions are concerned by Andrew MacIntyre · 22 years ago
- e888cdc Get rid of _once(); inlining it takes less code. :-) by Guido van Rossum · 22 years ago
- 7874106 Patch by Zack W to make test_noinherit() more robust: spawn a Python by Guido van Rossum · 22 years ago
- 68ee012 Drop the number of test files to 100 for all the tests by Neal Norwitz · 22 years ago
- 9146f27 SF bug 594996: OverflowError in random.randrange by Tim Peters · 22 years ago
- 80703c8 check_events(): This was failing under -O, due to not expecting any by Tim Peters · 22 years ago
- 0a51b58 base64.decodestring('') should return '' instead of raising an by Barry Warsaw · 22 years ago
- dd32a91 This is my patch by Michael W. Hudson · 22 years ago
- 8c91337 forgot the best part - the new tests... see patch 586561 by Skip Montanaro · 22 years ago
- 92bb6e7 Docstring nits: The module is neither proposed nor new. by Jeremy Hylton · 22 years ago
- 54df53a More changes of DeprecationWarning to FutureWarning. by Guido van Rossum · 22 years ago
- 29c2106 Explain use of currentThread() in _Condition methods. by Jeremy Hylton · 22 years ago
- 88b1def The filterwarnings() call here should be updated to filter out FutureWarning. by Guido van Rossum · 22 years ago
- 39c12bf Explain a little more. by Jeremy Hylton · 22 years ago
- af7fde7 Explain a minor mystery. by Jeremy Hylton · 22 years ago
- 04490bf tempfile's mkstemp(): Changed last argument from by Tim Peters · 22 years ago
- 80c02af Patch #595014: Cygwin tempfile patch by Jason Tishler · 22 years ago
- 09707e3 Patch by Tim to shut up the compiler's DeprecationWarnings on the by Barry Warsaw · 22 years ago
- 20f0b36 test_many(): open only 100 temp files, not 1000. Some systems don't by Guido van Rossum · 22 years ago