diff options
author | Georg Brandl <georg@python.org> | 2010-10-29 04:54:13 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2010-10-29 04:54:13 (GMT) |
commit | 2b15bd810deb7172ffa62643a78a6611d4ba928b (patch) | |
tree | c470fca62d6b2f244bad05e34a70e9190eef6f24 /Parser | |
parent | a95e977e41ca13ac2677c455e5270cf4018f5838 (diff) | |
download | cpython-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.h | 2 |
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 */ |