diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-11-14 23:22:33 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-11-14 23:22:33 (GMT) |
commit | 9a6b8d8cf89236f92282ce7526d2d913d2afe643 (patch) | |
tree | 4f89212be3c8ec9bd3356ec8ea0d2299690ada05 /Objects | |
parent | 366c10c5c091f179d59e0c506b1a719d78613ba3 (diff) | |
download | cpython-9a6b8d8cf89236f92282ce7526d2d913d2afe643.zip cpython-9a6b8d8cf89236f92282ce7526d2d913d2afe643.tar.gz cpython-9a6b8d8cf89236f92282ce7526d2d913d2afe643.tar.bz2 |
Repaired illegal syntax most compilers probably let slide (but MSVC
treats as a fatal error).
Diffstat (limited to 'Objects')
-rw-r--r-- | Objects/typeobject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index e2dace8..4b70a81 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -719,7 +719,7 @@ pmerge(PyObject *acc, PyObject* to_merge) { } } goto again; - skip: + skip: ; } PyMem_FREE(remain); |