cpython/Objects
Tim Peters c2e7da9859 Somebody started playing with const, so of course the outcome
was cascades of warnings about mismatching const decls.  Overall,
I think const creates lots of headaches and solves almost
nothing.  Added enough consts to shut up the warnings, but
this did require casting away const in one spot too (another
usual outcome of starting down this path):  the function
mymemreplace can't return const char*, but sometimes wants to
return its first argument as-is, which latter must be declared
const char* in order to avoid const warnings at mymemreplace's
call sites.  So, in the case the function wants to return the
first arg, that arg's declared constness must be subverted.
2000-07-09 08:02:21 +00:00
..
.cvsignore Ignore a bunch of generated files. 2000-05-02 18:34:30 +00:00
Makefile.in Marc-AAndre Lemburg: add new unicode files 2000-03-10 22:55:40 +00:00
abstract.c type_error(): Added "const" to signature to eliminate warning with -Wall. 2000-07-09 04:34:13 +00:00
bufferobject.c ANSI-fication of the sources. 2000-07-09 04:06:11 +00:00
classobject.c ANSI-fication of the sources. 2000-07-09 04:06:11 +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 Removed Py_PROTO and switched to ANSI C declarations in the dict 2000-07-04 17:44:48 +00:00
fileobject.c ANSI-fication of the sources. 2000-07-09 05:02:18 +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 Cray J90 fixes for long ints. 2000-07-08 04:17:21 +00:00
listobject.c Neil Schemenauer: small fixes for GC 2000-07-01 01:00:38 +00:00
longobject.c Cray J90 fixes for long ints. 2000-07-08 04:17:21 +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 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. 2000-07-09 03:09:57 +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 Somebody started playing with const, so of course the outcome 2000-07-09 08:02:21 +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 New surrogate support in the UTF-8 codec. By Bill Tutt. 2000-07-07 17:51:08 +00:00
xxobject.c ANSI-fication of the sources. 2000-07-09 07:04:36 +00:00