summaryrefslogtreecommitdiffstats
path: root/Objects
Commit message (Expand)AuthorAgeFilesLines
* Jim Fulton reported a segfault in dir(). A heavily proxied objectGuido van Rossum2002-05-131-7/+15
* Add #ifdef PY_USING_UNICODE sections, so thatWalter Dörwald2002-05-131-0/+6
* Patch #551410: Implement tp_getiter.Martin v. Löwis2002-05-081-1/+51
* Patch #552433: Special-case tuples. Avoid sub-type checking for lists.Martin v. Löwis2002-05-081-2/+18
* PyObject_Realloc(): If a small block is shrinking, bite the expense ofTim Peters2002-05-021-5/+16
* Remove old deprecated features from the xrange object.Fred Drake2002-05-021-273/+40
* Fix attribute access for the xrange objects. The tp_getattr and tp_getattroFred Drake2002-05-021-31/+38
* clarify message when raising TypeError to indicate that float() acceptsSkip Montanaro2002-05-021-1/+1
* Just added comments, and cleared some XXX questions, related to intTim Peters2002-04-281-3/+12
* _PyObject_DebugCheckAddress(): If the leading pad bytes are corrupt,Tim Peters2002-04-281-18/+25
* Repair widespread misuse of _PyString_Resize. Since it's clear peopleTim Peters2002-04-273-32/+19
* SF patch 549375: Compromise PyUnicode_EncodeUTF8Tim Peters2002-04-271-108/+70
* - New builtin function enumerate(x), from PEP 279. Example:Guido van Rossum2002-04-261-0/+139
* PyNumber_CoerceEx: this took a shortcut (not doing anything) when theGuido van Rossum2002-04-261-1/+4
* Make sure that tp_free frees the int the same way as tp_dealloc would.Guido van Rossum2002-04-261-0/+8
* Clean up the layout of the bool_as_number struct initializer.Guido van Rossum2002-04-251-38/+38
* abstract_get_bases(): Clarify exactly what the return values andBarry Warsaw2002-04-231-9/+46
* Clarify return value of PyLong_AsLongLong().Jeremy Hylton2002-04-231-1/+1
* unicode_memchr(): Squashed gratuitous int-vs-size_t mismatch (whichTim Peters2002-04-221-3/+3
* Apply patch diff.txt from SF feature requestWalter Dörwald2002-04-222-70/+191
* Py_UniversalNewlineFread(): small speed boost on non-Windows boxes.Tim Peters2002-04-211-3/+3
* PyUnicode_EncodeUTF8(): tightened the memory asserts a bit, and at leastTim Peters2002-04-211-12/+20
* Back out 2.140.Martin v. Löwis2002-04-211-43/+55
* Py_UniversalNewlineFread(): Many changes.Tim Peters2002-04-211-37/+47
* PyUnicode_EncodeUTF8: squash compiler wng. The difference of twoTim Peters2002-04-211-4/+5
* Patch #495401: Count number of required bytes for encoding UTF-8 beforeMartin v. Löwis2002-04-201-54/+43
* Fix SF bug #505315: Make free and cell vars show up consistently in locals().Jeremy Hylton2002-04-201-6/+7
* _PyObject_DebugMallocStats(): Added some potentially expensive internalTim Peters2002-04-181-5/+41
* PyObject_Malloc: make a tiny bit faster for platforms where malloc(0)Tim Peters2002-04-181-2/+9
* Remove some long-disabled debugging boilerplate.Tim Peters2002-04-181-26/+0
* type_get_doc(): Squash compiler wng about incompatible ptr types.Tim Peters2002-04-181-1/+2
* SF bug 542984.Guido van Rossum2002-04-181-7/+11
* SF bug 544647.Guido van Rossum2002-04-161-2/+6
* Whitespace normalization and fold some long lines.Guido van Rossum2002-04-161-20/+19
* Return the orginal string only if it's a real str or unicodeWalter Dörwald2002-04-152-4/+18
* Remove 'const' from local variable declaration in string_zfill() -- itGuido van Rossum2002-04-151-71/+80
* Apply the second version of SF patch http://www.python.org/sf/536241Walter Dörwald2002-04-152-3/+44
* Deprecate % as well. The message for deprecation of //, % and divmodGuido van Rossum2002-04-151-1/+6
* SF bug #543387.Guido van Rossum2002-04-151-0/+5
* SF bug #541883 (Vincent Fiack).Guido van Rossum2002-04-151-0/+5
* SF bug 543840: complex(string) accepts strings with \0Tim Peters2002-04-141-1/+1
* Mass checkin of universal newline support.Jack Jansen2002-04-141-17/+294
* Fold long lines. (Walter, please take note! :-)Guido van Rossum2002-04-131-9/+18
* _PyObject_DebugDumpStats: renamed to _PyObject_DebugMallocStats.Tim Peters2002-04-131-4/+8
* SF bug 543148: Memory leak with stackframes + inspect.Tim Peters2002-04-131-2/+17
* Partially implement SF feature request 444708.Guido van Rossum2002-04-131-15/+86
* Small anal correctness tweaks:Tim Peters2002-04-121-2/+2
* Add Raymond Hettinger's d.pop(). See SF patch 539949.Guido van Rossum2002-04-121-0/+38
* _PyObject_DebugRealloc(): rewritten to let the underlying realloc doTim Peters2002-04-121-27/+30
* _PyObject_DebugDumpAddress(): clarify an output message.Tim Peters2002-04-121-1/+1