summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* reorganized PyUnicode_DecodeUnicodeEscape a bit (in order to make itFredrik Lundh2001-02-181-110/+69
* Fix core dump whenever PyList_Reverse() was called.Guido van Rossum2001-02-121-11/+14
* Superseded by $(srcdir)/Makefile.pre.in.Neil Schemenauer2001-02-031-104/+0
* SF patch 103543 from tg@freebsd.org:Jeremy Hylton2001-02-011-1/+1
* PEP 205, Weak References -- initial checkin.Fred Drake2001-02-012-0/+28
* Rename dubiously named local variable 'cmpfunc' -- this is also aGuido van Rossum2001-01-291-5/+5
* Remove f_closure slot of frameobject and use f_localsplus instead.Jeremy Hylton2001-01-291-23/+14
* fix indentation glitchJeremy Hylton2001-01-291-1/+1
* Fixed .capitalize() method of Unicode objects to work like theMarc-André Lemburg2001-01-291-4/+18
* The one thing I love more then writing code is deleting code.Moshe Zadka2001-01-291-33/+2
* Re-factored PyInstance_New() into PyInstance_New() and PyInstance_NewRaw().Fred Drake2001-01-281-13/+34
* PEP 227 implementationJeremy Hylton2001-01-252-3/+54
* PEP 227 implementationJeremy Hylton2001-01-251-0/+115
* Check the Py_TPFLAGS_HAVE_RICHCOMPARE flag before using theGuido van Rossum2001-01-241-7/+9
* Show '\011', '\012', and '\015' as '\t', '\n', '\r' in strings.Ka-Ping Yee2001-01-242-12/+36
* Move uchhash functionality into unicodedata (after the recentFredrik Lundh2001-01-241-9/+11
* PyObject_Dump() -> _PyObject_Dump()Barry Warsaw2001-01-241-3/+3
* PyObject_Dump(): Use %p format to print the address of the pointer.Barry Warsaw2001-01-231-2/+4
* A few miscellaneous helpers.Barry Warsaw2001-01-231-2/+26
* 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