diff options
author | Guido van Rossum <guido@python.org> | 1999-02-16 19:38:04 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-02-16 19:38:04 (GMT) |
commit | 7d385294a41b465a1bc2b408d09897176ab9a587 (patch) | |
tree | d382e10b8897a8613e206cbf097275545bb71306 /Modules/posixmodule.c | |
parent | c7b72dbbca409b1f337c2eb06f7dd6ffeea14332 (diff) | |
download | cpython-7d385294a41b465a1bc2b408d09897176ab9a587.zip cpython-7d385294a41b465a1bc2b408d09897176ab9a587.tar.gz cpython-7d385294a41b465a1bc2b408d09897176ab9a587.tar.bz2 |
The symbols P_* (for spawn*(), MS specific) should not have a leading
underscore after all, for consistency with the O_* symnbols.
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r-- | Modules/posixmodule.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index 8dc079e..e8de3e6 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -3439,11 +3439,11 @@ all_ins(d) #endif #ifdef HAVE_SPAWNV - if (ins(d, "_P_WAIT", (long)_P_WAIT)) return -1; - if (ins(d, "_P_NOWAIT", (long)_P_NOWAIT)) return -1; - if (ins(d, "_P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1; - if (ins(d, "_P_NOWAITO", (long)_P_NOWAITO)) return -1; - if (ins(d, "_P_DETACH", (long)_P_DETACH)) return -1; + if (ins(d, "P_WAIT", (long)_P_WAIT)) return -1; + if (ins(d, "P_NOWAIT", (long)_P_NOWAIT)) return -1; + if (ins(d, "P_OVERLAY", (long)_OLD_P_OVERLAY)) return -1; + if (ins(d, "P_NOWAITO", (long)_P_NOWAITO)) return -1; + if (ins(d, "P_DETACH", (long)_P_DETACH)) return -1; #endif #if defined(PYOS_OS2) |