cpython/Objects
Marc-André Lemburg fb625847bf Fix to a bug found by Florian Weimer:
The UTF-8 decoder is still buggy (i.e. it doesn't pass Markus Kuhn's
stress test), mainly due to the following construct:

    #define UTF8_ERROR(details)  do {                       \
        if (utf8_decoding_error(&s, &p, errors, details))   \
            goto onError;                                   \
        continue;                                           \
    } while (0)

(The "continue" statement is supposed to exit from the outer loop,
but of course, it doesn't.  Indeed, this is a marvelous example of
the dangers of the C programming language and especially of the C
preprocessor.)
2000-07-16 13:29:13 +00:00
..
.cvsignore Ignore a bunch of generated files. 2000-05-02 18:34:30 +00:00
abstract.c change abstract size functions PySequence_Size &c. 2000-07-12 12:56:19 +00:00
bufferobject.c ANSI-fication of the sources. 2000-07-09 04:06:11 +00:00
classobject.c Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 2000-07-16 12:04:32 +00:00
cobject.c ANSI-fication of the source. 2000-07-09 04:14:42 +00:00
complexobject.c ANSI-fication of the sources. 2000-07-09 04:36:04 +00:00
dictobject.c Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 2000-07-16 12:04:32 +00:00
fileobject.c Added PyObject_AsFileDescriptor, which checks for integer, long integer, 2000-07-13 23:56:54 +00:00
floatobject.c Remove legacy use of __SC__; no longer needed now that ANSI source is 2000-07-09 05:31:24 +00:00
frameobject.c ANSI-fication of the sources. 2000-07-09 05:40:56 +00:00
funcobject.c ANSI-fication of the sources. 2000-07-09 06:03:25 +00:00
intobject.c Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 2000-07-16 12:04:32 +00:00
listobject.c Fix in PyList_New(). With GC enabled and when out of memory, 2000-07-15 03:31:31 +00:00
longobject.c Cray J90 fixes for long ints. 2000-07-08 04:17:21 +00:00
Makefile.in Marc-AAndre Lemburg: add new unicode files 2000-03-10 22:55:40 +00:00
methodobject.c ANSI-fication of the sources. 2000-07-09 06:03:25 +00:00
moduleobject.c ANSI-fication of the sources. 2000-07-09 06:03:25 +00:00
object.c Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 2000-07-16 12:04:32 +00:00
rangeobject.c ANSI-fication of the sources. 2000-07-09 06:21:27 +00:00
sliceobject.c ANSI-fication of the sources. 2000-07-09 06:21:27 +00:00
stringobject.c Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either 2000-07-16 12:04:32 +00:00
tupleobject.c ANSI-fication of the sources. 2000-07-09 07:04:36 +00:00
typeobject.c ANSI-fication of the sources. 2000-07-09 06:21:27 +00:00
unicodectype.c Conditionally (currently on ifdef macintosh) break the large switch up 2000-07-06 13:57:38 +00:00
unicodeobject.c Fix to a bug found by Florian Weimer: 2000-07-16 13:29:13 +00:00
xxobject.c ANSI-fication of the sources. 2000-07-09 07:04:36 +00:00