diff options
author | Guido van Rossum <guido@python.org> | 1993-10-26 15:22:37 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-10-26 15:22:37 (GMT) |
commit | 06191530b6f3aafef6128d9c7717980a18d92205 (patch) | |
tree | 5d79b871420a902ece69e1b996957c7f22c7c857 /Modules/posixmodule.c | |
parent | 72481a34974d3eb8246cc65181ef7fed253db904 (diff) | |
download | cpython-06191530b6f3aafef6128d9c7717980a18d92205.zip cpython-06191530b6f3aafef6128d9c7717980a18d92205.tar.gz cpython-06191530b6f3aafef6128d9c7717980a18d92205.tar.bz2 |
Work around a bug in the DEC alpha OSF/1 C preprocessor.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index df61c25..04c17f0 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -350,6 +350,9 @@ again: { DECREF( d ); strcat( _name, "/*.*" ); + /* This comment is here to help the DEC alpha OSF/1 cpp + (which scans for comments but not for strings in + code that is #ifdef'ed out...) */ goto again; } |