summaryrefslogtreecommitdiffstats
path: root/Parser
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-10-29 04:54:13 (GMT)
committerGeorg Brandl <georg@python.org>2010-10-29 04:54:13 (GMT)
commit2b15bd810deb7172ffa62643a78a6611d4ba928b (patch)
treec470fca62d6b2f244bad05e34a70e9190eef6f24 /Parser
parenta95e977e41ca13ac2677c455e5270cf4018f5838 (diff)
downloadcpython-2b15bd810deb7172ffa62643a78a6611d4ba928b.zip
cpython-2b15bd810deb7172ffa62643a78a6611d4ba928b.tar.gz
cpython-2b15bd810deb7172ffa62643a78a6611d4ba928b.tar.bz2
#10222: fix for overzealous AIX compiler.
Diffstat (limited to 'Parser')
-rw-r--r--Parser/tokenizer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h
index 424567d..2be3bf2 100644
--- a/Parser/tokenizer.h
+++ b/Parser/tokenizer.h
@@ -15,7 +15,7 @@ extern "C" {
enum decoding_state {
STATE_INIT,
STATE_RAW,
- STATE_NORMAL, /* have a codec associated with input */
+ STATE_NORMAL /* have a codec associated with input */
};
/* Tokenizer state */