summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
...
* Gave __xor__/symmetric_difference a factor of 2-5 speed boost.Tim Peters2002-08-251-4/+6
* Sped union by a factor of 3-4.Tim Peters2002-08-251-1/+2
* Sped intersection by large factors (3-5x faster than before on sets ofTim Peters2002-08-251-7/+2
* Added a clue about why xyz_update isn't the same as __xyz__.Tim Peters2002-08-251-1/+4
* Implemented <, <=, >, >= for sets, giving subset and proper-subsetTim Peters2002-08-253-12/+45
* TestSubset(): Generalized the framework to support testing upcomingTim Peters2002-08-251-10/+23
* Rewrote all remaining assert stmts.Tim Peters2002-08-251-30/+30
* Simplified construction of the test suite.Tim Peters2002-08-251-21/+23
* Simplified code building sets of characters.Tim Peters2002-08-251-5/+5
* Ack! Virtually every test here relied on an assert stmt. assert stmtsTim Peters2002-08-251-60/+60
* Simplified the setup for is-subset testing.Tim Peters2002-08-251-25/+20
* Record a clue about why __or__ is not union, etc.Tim Peters2002-08-251-0/+5
* Replace 0 with False to match working in documentation. SF 599681.Raymond Hettinger2002-08-251-2/+2
* Correct documentation of allow_reuse_address to match the actual script.Raymond Hettinger2002-08-251-1/+1
* 1. Revert subprocess environment clearing, will restart subprocessKurt B. Kaiser2002-08-253-39/+17
* Improve exception handling across rpc interfaceKurt B. Kaiser2002-08-241-1/+4
* Removed < <= > >= from the API. Implemented as comparisons of theRaymond Hettinger2002-08-243-23/+5
* string_contains(): speed up by avoiding function calls whereGuido van Rossum2002-08-241-9/+12
* Speed up the most egregious "if token in (long tuple)" cases by usingGuido van Rossum2002-08-241-10/+19
* Speedup for PyObject_IsTrue(): check for True and False first.Guido van Rossum2002-08-241-0/+4
* At Tim Peter's suggestion, propagated GvR's binary operator changes toRaymond Hettinger2002-08-242-8/+48
* Speedup for PyObject_RichCompareBool(): PyObject_RichCompare() almostGuido van Rossum2002-08-241-1/+4
* Since instances of _TemporarilyImmutableSet are always thrown awayRaymond Hettinger2002-08-241-5/+1
* Expanded tests for sets of sets.Raymond Hettinger2002-08-241-0/+4
* 1. Removed module self test in favor of unittests -- Timbot's suggestion.Raymond Hettinger2002-08-241-109/+7
* Fix typo reported to python-docs.Fred Drake2002-08-231-1/+1
* pop() docstring: this isn't a randomly-chosen element, it's merelyTim Peters2002-08-231-1/+1
* Comment repair.Tim Peters2002-08-231-4/+4
* Fix SF bug 599128, submitted by Inyeol Lee: .replace() would do theGuido van Rossum2002-08-232-3/+11
* Code by Inyeol Lee, submitted to SF bug 595350, to implementGuido van Rossum2002-08-235-48/+61
* Whitespace normalization.Tim Peters2002-08-239-15/+15
* Fix markup and punctuationRaymond Hettinger2002-08-231-4/+4
* Got rid of the toy _Set class, in favor of sets.Set.Tim Peters2002-08-231-33/+6
* s/_as_Temporarily_Immutable/_as_temporarily_immutable/g, because theTim Peters2002-08-231-2/+2
* pop(): An arbitrary element is removed, not a random element.Tim Peters2002-08-231-1/+2
* Adjust the markup in a few places so this will actually format.Fred Drake2002-08-231-92/+89
* Add an entry for the sets module documentation.Fred Drake2002-08-231-1/+2
* Load docs for sets.pyRaymond Hettinger2002-08-232-0/+220
* RH pointed out that discard(element) doesn't do the transformation onGuido van Rossum2002-08-231-1/+1
* The error messages in err_args() -- which is only called when theGuido van Rossum2002-08-231-2/+2
* Added the standard MacOSX location for documentation inside a frameworkJack Jansen2002-08-231-1/+2
* Rewritten using the tokenize module, which gives us a real tokenizerGuido van Rossum2002-08-231-188/+144
* Don't build ConfigurePythonCarbon and ConfigurePythonClassic any longer,Jack Jansen2002-08-221-2/+2
* For MacPython-OS9 verbose is the default.Jack Jansen2002-08-221-0/+3
* Interface to Apple Help Manager.Jack Jansen2002-08-223-0/+255
* Moved CoreFoundation type support to bgen/macsupport.Jack Jansen2002-08-227-70/+75
* Added PyDoc_STR's.Jack Jansen2002-08-221-112/+112
* Tweak wordsep_re again: this time to recognize an em-dash withGreg Ward2002-08-221-1/+1
* Test an em-dash with adjacent punctuation.Greg Ward2002-08-221-0/+6
* Factored out BaseTestCase.check_split() method -- use it whereverGreg Ward2002-08-221-8/+8