diff options
author | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-05 01:48:03 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@haypocalc.com> | 2011-04-05 01:48:03 +0200 |
commit | f41c2fdbb05ad29ad7c2a6a65dfac2e9d919f022 (patch) | |
tree | 2c8d484a8a75bf05f7660521aca087c2e825571a /Parser/tokenizer.h | |
parent | 8136044f569744c1f5fbb37a093e2728db859ee0 (diff) | |
download | cpython-f41c2fdbb05ad29ad7c2a6a65dfac2e9d919f022.tar.gz |
Issue #9319: Include the filename in "Non-UTF8 code ..." syntax error.
Diffstat (limited to 'Parser/tokenizer.h')
-rw-r--r-- | Parser/tokenizer.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Parser/tokenizer.h b/Parser/tokenizer.h index 3a0d3cb08e..ed1f3aa147 100644 --- a/Parser/tokenizer.h +++ b/Parser/tokenizer.h @@ -75,7 +75,6 @@ extern void PyTokenizer_Free(struct tok_state *); extern int PyTokenizer_Get(struct tok_state *, char **, char **); extern char * PyTokenizer_RestoreEncoding(struct tok_state* tok, int len, int *offset); -extern char * PyTokenizer_FindEncoding(int); #ifdef __cplusplus } |