[Python-checkins] r72196 - python/branches/py3k/Modules/_json.c

hirokazu.yamamoto python-checkins at python.org
Sat May 2 17:55:19 CEST 2009


Author: hirokazu.yamamoto
Date: Sat May  2 17:55:19 2009
New Revision: 72196

Log:
Fixed warning. (Should not use *const* as variable name)

Modified:
   python/branches/py3k/Modules/_json.c

Modified: python/branches/py3k/Modules/_json.c
==============================================================================
--- python/branches/py3k/Modules/_json.c	(original)
+++ python/branches/py3k/Modules/_json.c	Sat May  2 17:55:19 2009
@@ -106,7 +106,7 @@
 static int
 encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level);
 static PyObject *
-_encoded_const(PyObject *const);
+_encoded_const(PyObject *obj);
 static void
 raise_errmsg(char *msg, PyObject *s, Py_ssize_t end);
 static PyObject *


More information about the Python-checkins mailing list