diff options
author | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-03-29 11:53:38 (GMT) |
---|---|---|
committer | Andrew MacIntyre <andymac@bullseye.apana.org.au> | 2004-03-29 11:53:38 (GMT) |
commit | da4d6cb57340f44ab72bc8f0284ca839372bbeb6 (patch) | |
tree | 16e48b411d1f9d1706647218c26dc7bce9cd8d63 /Python | |
parent | 174175bf3a5522aa309915a34259bc13685ecf08 (diff) | |
download | cpython-da4d6cb57340f44ab72bc8f0284ca839372bbeb6.zip cpython-da4d6cb57340f44ab72bc8f0284ca839372bbeb6.tar.gz cpython-da4d6cb57340f44ab72bc8f0284ca839372bbeb6.tar.bz2 |
OS/2 VACPP build updates/fixes
Diffstat (limited to 'Python')
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 7321b74..b3c8b09 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -575,7 +575,7 @@ builtin_execfile(PyObject *self, PyObject *args) struct stat s; if (stat(filename, &s) == 0) { if (S_ISDIR(s.st_mode)) -# if defined(PY_OS2) && defined(PYCC_VACPP) +# if defined(PYOS_OS2) && defined(PYCC_VACPP) errno = EOS2ERR; # else errno = EISDIR; |