diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-08-22 00:23:13 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-08-22 00:23:13 (GMT) |
commit | cba2e3c2e9f219043ddef0a896748f50691b3c47 (patch) | |
tree | a6f891e4052bf5db77209cbfd6ded2f807de39b3 /Python/import.c | |
parent | 82fb71d662dd9858d2560b72fd0d867604b12389 (diff) | |
download | cpython-cba2e3c2e9f219043ddef0a896748f50691b3c47.zip cpython-cba2e3c2e9f219043ddef0a896748f50691b3c47.tar.gz cpython-cba2e3c2e9f219043ddef0a896748f50691b3c47.tar.bz2 |
remove unused declaration
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Python/import.c b/Python/import.c index 113123d..b18ba2c 100644 --- a/Python/import.c +++ b/Python/import.c @@ -24,9 +24,6 @@ extern "C" { /* See _PyImport_FixupExtensionObject() below */ static PyObject *extensions = NULL; -/* Function from Parser/tokenizer.c */ -extern char * PyTokenizer_FindEncodingFilename(int, PyObject *); - /* This table is defined in config.c: */ extern struct _inittab _PyImport_Inittab[]; |