diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2013-08-22 02:23:13 +0200 |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2013-08-22 02:23:13 +0200 |
commit | cba2e3c2e9f219043ddef0a896748f50691b3c47 (patch) | |
tree | a6f891e4052bf5db77209cbfd6ded2f807de39b3 | |
parent | 82fb71d662dd9858d2560b72fd0d867604b12389 (diff) | |
download | cpython-git-cba2e3c2e9f219043ddef0a896748f50691b3c47.tar.gz |
remove unused declaration
-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 113123d564..b18ba2cb98 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[]; |