Staging
v0.8.1
Revision 57d88e5abd06cefcc8d52d62765c36214b1c1956 authored by Walter Dörwald on 26 August 2004, 16:53:04 UTC, committed by Walter Dörwald on 26 August 2004, 16:53:04 UTC
it can be used for str and unicode. Drop the test for
   "".join([s]) is s
because this is an implementation detail (and doesn't work for unicode)
1 parent 592ef61
Raw File
WAIT.py
# Generated by h2py from /usr/include/sys/wait.h
_WSTOPPED = 0177
WNOHANG = 0100
WEXITED = 0001
WTRAPPED = 0002
WSTOPPED = 0004
WCONTINUED = 0010
WNOWAIT = 0200
WOPTMASK = (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)
WSTOPFLG = 0177
WCONTFLG = 0177777
WCOREFLAG = 0200
WSIGMASK = 0177
WUNTRACED = 0004
back to top