| Commit message (Expand) | Author | Age | Files | Lines |
* | Change the binary operators |, &, ^, - to return NotImplemented rather | Guido van Rossum | 2002-08-22 | 1 | -14/+40 |
|
|
* | Give the section on PEP 263 a more meaningful title, so readers will | Fred Drake | 2002-08-22 | 1 | -1/+1 |
|
|
* | Add a note that apply() is needed since the extended call syntax is | Fred Drake | 2002-08-22 | 1 | -0/+2 |
|
|
* | Fix grammatically inept comment. | Michael W. Hudson | 2002-08-22 | 1 | -2/+1 |
|
|
* | Added a main() function and support to run this module as a script. | Fred Drake | 2002-08-21 | 2 | -3/+33 |
|
|
* | Refactor: Remove some code that was obsoleted when this module was | Fred Drake | 2002-08-21 | 1 | -11/+17 |
|
|
* | Clarify that even though some of the relevant specifications define the | Fred Drake | 2002-08-21 | 1 | -8/+10 |
|
|
* | Now that __init__ transforms set elements, we know that all of the | Raymond Hettinger | 2002-08-21 | 1 | -1/+3 |
|
|
* | Add regression test for proper construction of sets of sets. | Raymond Hettinger | 2002-08-21 | 1 | -0/+10 |
|
|
* | Replace all cases of "while 1" with "while True". | Raymond Hettinger | 2002-08-21 | 1 | -7/+7 |
|
|
* | Sped ._update() method by factoring try/except out of the inner loop. | Raymond Hettinger | 2002-08-21 | 1 | -4/+5 |
|
|
* | Ouch. The test suite *really* needs work!!!!! There were several | Guido van Rossum | 2002-08-21 | 1 | -46/+38 |
|
|
* | Add Raymond H to the list of authors; add some XXX comments about | Guido van Rossum | 2002-08-21 | 1 | -0/+9 |
|
|
* | Fast size check for sub/super set tests | Raymond Hettinger | 2002-08-21 | 1 | -0/+4 |
|
|
* | Optimize try/except ordering in sets.py. | Raymond Hettinger | 2002-08-21 | 1 | -25/+25 |
|
|
* | Minor typo | Raymond Hettinger | 2002-08-20 | 1 | -1/+1 |
|
|
* | Rename popitem() to pop(). (An idea from SF patch 597444.) | Guido van Rossum | 2002-08-20 | 2 | -3/+3 |
|
|
* | Move __init__ from BaseSet into Set and ImmutableSet. This causes a | Guido van Rossum | 2002-08-20 | 1 | -16/+28 |
|
|
* | Typo repair. Please include in any backports. | Guido van Rossum | 2002-08-20 | 1 | -1/+1 |
|
|
* | Add a note reminding the reader that sets are not sequences. I | Guido van Rossum | 2002-08-20 | 1 | -0/+10 |
|
|
* | SF patch 595846 by Brett Cannon: Update environ for CGIHTTPServer.py | Guido van Rossum | 2002-08-20 | 1 | -2/+1 |
|
|
* | long_format(), long_lshift(): Someone on c.l.py is trying to boost | Tim Peters | 2002-08-20 | 1 | -2/+2 |
|
|
* | Fix some endcase bugs in unicode rfind()/rindex() and endswith(). | Guido van Rossum | 2002-08-20 | 4 | -4/+11 |
|
|
* | Comment typo repair. | Michael W. Hudson | 2002-08-20 | 1 | -1/+1 |
|
|
* | My patch #597221. Use f_lasti more consistently. | Michael W. Hudson | 2002-08-20 | 1 | -9/+9 |
|
|
* | Bump version number to 2.3 | Barry Warsaw | 2002-08-20 | 1 | -1/+1 |
|
|
* | Added tests for SF patch #597593, syntactically invalid Content-Type: headers. | Barry Warsaw | 2002-08-20 | 1 | -2/+23 |
|
|
* | get_content_type(), get_content_maintype(), get_content_subtype(): RFC | Barry Warsaw | 2002-08-20 | 1 | -5/+5 |
|
|
* | _dispatch(): Use get_content_maintype() and get_content_subtype() to | Barry Warsaw | 2002-08-20 | 1 | -3/+2 |
|
|
* | getinstclassname(): Squash new compiler wng in assert (comparison of | Tim Peters | 2002-08-20 | 1 | -1/+1 |
|
|
* | Clarify the endpos argument to the rx.match() method. | Fred Drake | 2002-08-20 | 1 | -2/+6 |
|
|
* | test_three_lines(): Test case reported by Andrew McNamara. Works in | Barry Warsaw | 2002-08-20 | 1 | -0/+8 |
|
|
* | Cover the sets module. | Andrew M. Kuchling | 2002-08-20 | 1 | -0/+95 |
|
|
* | Create two subsections of the "Core Language Changes" section, because | Andrew M. Kuchling | 2002-08-20 | 1 | -67/+104 |
|
|
* | Add versionadded for operator.pow | Neal Norwitz | 2002-08-19 | 1 | -0/+1 |
|
|
* | Extend some comments on the order of values in the returns from | Fred Drake | 2002-08-19 | 1 | -8/+14 |
|
|
* | SF patch 576101, by Oren Tirosh: alternative implementation of | Guido van Rossum | 2002-08-19 | 7 | -106/+171 |
|
|
* | Add a warning comment to the LOAD_GLOBAL inline code. | Guido van Rossum | 2002-08-19 | 1 | -1/+3 |
|
|
* | Another ugly inlining hack, expanding the two PyDict_GetItem() calls | Guido van Rossum | 2002-08-19 | 1 | -1/+25 |
|
|
* | Call me anal, but there was a particular phrase that was speading to | Guido van Rossum | 2002-08-19 | 7 | -9/+9 |
|
|
* | Another modest speedup in PyObject_GenericGetAttr(): inline the call | Guido van Rossum | 2002-08-19 | 1 | -2/+26 |
|
|
* | Make PyDescr_IsData() a macro. It's too simple to be a function. | Guido van Rossum | 2002-08-19 | 2 | -7/+1 |
|
|
* | Check in my ultra-shortlived patch #597220. | Michael W. Hudson | 2002-08-19 | 1 | -3/+3 |
|
|
* | Inline call to _PyObject_GetDictPtr() in PyObject_GenericGetAttr(). | Guido van Rossum | 2002-08-19 | 1 | -3/+20 |
|
|
* | Fix typo in __slots__ of ImmutableSet. | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | News about sets. (There's no documentation; if someone wants to | Guido van Rossum | 2002-08-19 | 1 | -0/+7 |
|
|
* | Set classes and their unit tests, from sandbox. | Guido van Rossum | 2002-08-19 | 2 | -0/+1097 |
|
|
* | Simple but important optimization for descr_check(): instead of the | Guido van Rossum | 2002-08-19 | 1 | -1/+1 |
|
|
* | Fix spelling errors and note the addition of operator.pow() | Raymond Hettinger | 2002-08-19 | 1 | -7/+9 |
|
|
* | Merged the MacPython thanks list into the general acknowledgements. | Jack Jansen | 2002-08-19 | 2 | -10/+25 |
|
|