diff options
author | Guido van Rossum <guido@python.org> | 1996-08-22 23:10:58 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1996-08-22 23:10:58 (GMT) |
commit | ac279109d4c4cdcda01afea224464b7d9ebe314e (patch) | |
tree | b36dc19e1bb5bbca66102f53b0cc65a340031a01 /Python/import.c | |
parent | 2ea0b0649874ff1654fc67db14b9a13582d9307a (diff) | |
download | cpython-ac279109d4c4cdcda01afea224464b7d9ebe314e.zip cpython-ac279109d4c4cdcda01afea224464b7d9ebe314e.tar.gz cpython-ac279109d4c4cdcda01afea224464b7d9ebe314e.tar.bz2 |
PYTHONWIN -> MS_COREDLL
Diffstat (limited to 'Python/import.c')
-rw-r--r-- | Python/import.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/import.c b/Python/import.c index 04a00af..f340add 100644 --- a/Python/import.c +++ b/Python/import.c @@ -415,7 +415,7 @@ find_module(name, path, buf, buflen, p_fp) struct filedescr *fdp; FILE *fp = NULL; -#ifdef PYTHONWIN +#ifdef MS_COREDLL if ((fp=PyWin_FindRegisteredModule(name, &fdp, buf, buflen))!=NULL) { *p_fp = fp; return fdp; |