summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* New special case in comparisons: None is smaller than any other objectGuido van Rossum2001-01-221-0/+6
* Once again, numeric-smelling objects compare smaller than non-numericGuido van Rossum2001-01-221-2/+17
* forgot to check in the new makeunicodedata.py scriptFredrik Lundh2001-01-211-1/+1
* Remove a smelly export.Neil Schemenauer2001-01-211-1/+1
* Better error message if ucnhash cannot be found (obscure attributeFredrik Lundh2001-01-201-3/+8
* Tim chastens:Barry Warsaw2001-01-201-1/+5
* default_3way_compare(): When comparing the pointers, they must be castBarry Warsaw2001-01-201-2/+2
* Application and elaboration of patch #103305 to fix core dumps whenBarry Warsaw2001-01-191-30/+40
* refactored the unicodeobject/ucnhash interface, to hide theFredrik Lundh2001-01-191-103/+39
* Derivative of patch #102549, "simpler, faster(!) implementation of string.join".Tim Peters2001-01-191-38/+52
* Rich comparisons fallout: instance_hash() should check for bothGuido van Rossum2001-01-181-7/+14
* Rich comparisons fallout: PyObject_Hash() should check for bothGuido van Rossum2001-01-181-1/+1
* Changes to recursive-object comparisons, having to do with a test caseGuido van Rossum2001-01-181-107/+137
* Move distributed and duplicated config for stat() and fstat() into pyport.h.Tim Peters2001-01-181-20/+0
* Use rich comparisons to fulfill an old wish: complex numbers now raiseGuido van Rossum2001-01-181-49/+84
* Rich comparisons:Guido van Rossum2001-01-181-118/+45
* Same treatment as listobject.c:Guido van Rossum2001-01-181-43/+104
* Fix a leak in instance_coerce(). This was introduced by Neil'sGuido van Rossum2001-01-171-2/+0
* Convert to rich comparisons:Guido van Rossum2001-01-171-90/+163
* Deal properly (?) with comparing recursive datastructures.Guido van Rossum2001-01-171-62/+69
* This patch adds a new builtin unistr() which behaves like str()Marc-André Lemburg2001-01-172-0/+48
* Rich comparisons fall-out:Guido van Rossum2001-01-171-14/+1
* Rich comparisons fall-out:Guido van Rossum2001-01-171-17/+1
* Rich comparisons fall-out:Guido van Rossum2001-01-171-14/+1
* Rich comparisons fall-out:Guido van Rossum2001-01-171-4/+4
* Rich comparisons.Guido van Rossum2001-01-171-146/+278
* Rich comparisons. Refactored internal routine do_cmp() and added APIsGuido van Rossum2001-01-171-74/+293
* Rationalizing the fallback code for portable fseek -- this is all muchGuido van Rossum2001-01-161-26/+12
* Added checks to prevent PyUnicode_Count() from dumping coreMarc-André Lemburg2001-01-162-19/+45
* Committing PEP 232, function attribute feature, approved by Guido.Barry Warsaw2001-01-152-15/+113
* SF patch #103158 by Greg Ball: Don't do unsafe arithmetic in xrangeGuido van Rossum2001-01-151-10/+80
* Speed getline_via_fgets(), by supplying two "fast paths", although one isTim Peters2001-01-151-54/+81
* Use the "MS" getline hack (fgets()) by default on non-get_unlockedTim Peters2001-01-151-30/+47
* Jeff Epler's patch adding an xreadlines() method. (It just importsGuido van Rossum2001-01-091-1/+25
* Tsk, tsk, tsk. Treat FreeBSD the same as the other BSDs when definingGuido van Rossum2001-01-091-1/+1
* Fix a silly bug in float_pow. Sorry Tim.Neil Schemenauer2001-01-081-1/+1
* A few reformats; no logic changes.Tim Peters2001-01-081-9/+8
* Let's hope that three time's a charm...Guido van Rossum2001-01-081-3/+3
* Fiddled ms_getline_hack after talking w/ Guido: made clearer that theTim Peters2001-01-081-65/+67
* MS Win32 .readline() speedup, as discussed on Python-Dev. This is a trickyTim Peters2001-01-071-15/+184
* Tim noticed that I had botched get_line_raw(). Looking again, IGuido van Rossum2001-01-071-47/+30
* This patch adds a new feature to the builtin charmap codec:Marc-André Lemburg2001-01-061-8/+48
* Restructured get_line() for clarity and speed.Guido van Rossum2001-01-051-66/+59
* Changes for PEP 208. PyObject_Compare has been rewritten. Instances noNeil Schemenauer2001-01-041-118/+139
* Make long a new style number type. Sequence repeat is now done hereNeil Schemenauer2001-01-041-76/+262
* Make int a new style number type. Sequence repeat is now done hereNeil Schemenauer2001-01-041-64/+116
* Make float a new style number type.Neil Schemenauer2001-01-041-42/+108
* Make instances a new style number type. See PEP 208 for details. InstanceNeil Schemenauer2001-01-041-184/+268
* Massive changes as per PEP 208. Read it for details.Neil Schemenauer2001-01-041-728/+318
* dict_update has two boundary conditions: a.update(a) and a.update({})Jeremy Hylton2001-01-031-2/+2