summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* 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
* fix leakJeremy Hylton2001-01-031-1/+3
* This patch changes the default behaviour of the builtin charmapMarc-André Lemburg2001-01-031-13/+8
* Add garbage collection for module objects. Closes patch #102939 andNeil Schemenauer2001-01-021-2/+27
* Make the indentation consistently use tabs instead of using spaces justFred Drake2000-12-201-3/+3
* Patch #102940: use only printable Unicode chars in reportingAndrew M. Kuchling2000-12-191-1/+2
* Patch #102868 from cgw: fix memory leak when an EOF is encounteredAndrew M. Kuchling2000-12-191-0/+3
* Fix off-by-one error in split_substring(). Fixes SF bug #122162.Guido van Rossum2000-12-191-1/+1
* [ Patch #102852 ] Make % error a bit more informative by indicates theAndrew M. Kuchling2000-12-152-4/+6
* Test for NULL returned from PyObject_NEW().Guido van Rossum2000-12-141-0/+3
* Test for NULL returned from PyObject_NEW().Guido van Rossum2000-12-141-0/+3
* Add long-overdue docstrings to dict methods.Tim Peters2000-12-131-11/+53
* Use METH_VARARGS instead of "1" in list method table.Tim Peters2000-12-131-9/+9
* Typo repair in comments. Fell for GregS's .popitem() poke.Tim Peters2000-12-131-2/+6
* Bring comments up to date (e.g., they still said the table had to beTim Peters2000-12-131-23/+40
* Add popitem() -- SF patch #102733.Guido van Rossum2000-12-121-0/+53
* Jeffrey D. Collins <tokeneater@users.sourceforge.net>:Fred Drake2000-12-061-3/+3
* Backing out my changes.Moshe Zadka2000-11-301-72/+0
* Only use getline() when compiling using glibcAndrew M. Kuchling2000-11-301-1/+1