diff options
author | Brett Cannon <brett@python.org> | 2012-05-04 20:04:14 (GMT) |
---|---|---|
committer | Brett Cannon <brett@python.org> | 2012-05-04 20:04:14 (GMT) |
commit | 6b9b7276955180b3dde07d53ec3d67e76c39d3ff (patch) | |
tree | 7c0b664424e2138dd790c88eaffd750b4215ca93 /Python/import.c | |
parent | a6685e8d368740ade8332d2c6f02d493a8b80b8a (diff) | |
download | cpython-6b9b7276955180b3dde07d53ec3d67e76c39d3ff.zip cpython-6b9b7276955180b3dde07d53ec3d67e76c39d3ff.tar.gz cpython-6b9b7276955180b3dde07d53ec3d67e76c39d3ff.tar.bz2 |
Remove dead Windows code which no longer will compile.
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/Python/import.c b/Python/import.c index 8349b77..4edc3a7 100644 --- a/Python/import.c +++ b/Python/import.c @@ -1150,12 +1150,6 @@ PyImport_GetImporter(PyObject *path) { } -#ifdef MS_COREDLL -extern FILE *_PyWin_FindRegisteredModule(PyObject *, struct filedescr **, - PyObject **p_path); -#endif - - static int init_builtin(PyObject *); /* Forward */ /* Initialize a built-in module. |