diff options
author | Thomas Wouters <thomas@python.org> | 2006-03-01 21:31:21 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2006-03-01 21:31:21 (GMT) |
commit | c3547a311eda0e8c398841b40b5beed332de499e (patch) | |
tree | eabeabbc4e51cc602e75bf70463b9b92973ec0dc /Python | |
parent | 15bfc3b082a0f62d45dd5ab15e05243dc57e2692 (diff) | |
download | cpython-c3547a311eda0e8c398841b40b5beed332de499e.zip cpython-c3547a311eda0e8c398841b40b5beed332de499e.tar.gz cpython-c3547a311eda0e8c398841b40b5beed332de499e.tar.bz2 |
Fix C99-ism, and add XXX to comment
Diffstat (limited to 'Python')
-rw-r--r-- | Python/getargs.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/getargs.c b/Python/getargs.c index 4f4164e..8ee7d2f 100644 --- a/Python/getargs.c +++ b/Python/getargs.c @@ -849,7 +849,7 @@ convertsimple(PyObject *arg, const char **p_format, va_list *p_va, int flags, arg, msgbuf, bufsize); if (*format == '#') { FETCH_SIZE; - assert(0); // redundant with if-case + assert(0); /* XXX redundant with if-case */ if (arg == Py_None) *q = 0; else |