summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorAndrew MacIntyre <andymac@bullseye.apana.org.au>2004-03-29 11:58:55 (GMT)
committerAndrew MacIntyre <andymac@bullseye.apana.org.au>2004-03-29 11:58:55 (GMT)
commit61525be632b8375255e6745bc318781fa15e47f2 (patch)
tree2101eedcd5fd701931d6e87151cc5f0a6acbc5a8 /Python
parentf0deb8720b98a945f00fbe8a312cead1a49295c2 (diff)
downloadcpython-61525be632b8375255e6745bc318781fa15e47f2.zip
cpython-61525be632b8375255e6745bc318781fa15e47f2.tar.gz
cpython-61525be632b8375255e6745bc318781fa15e47f2.tar.bz2
OS/2 VACPP build updates/fixes
Diffstat (limited to 'Python')
-rw-r--r--Python/bltinmodule.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c
index 8c7e025..5edb7e5 100644
--- a/Python/bltinmodule.c
+++ b/Python/bltinmodule.c
@@ -579,7 +579,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;