mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
The symbols P_* (for spawn*(), MS specific) should not have a leading
underscore after all, for consistency with the O_* symnbols.
This commit is contained in:
parent
c7b72dbbca
commit
7d385294a4
1 changed files with 5 additions and 5 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue