Staging
v0.5.1
https://github.com/python/cpython
Revision f3f6cfe1618213427ab7725465869f234a754f79 authored by Anthony Baxter on 21 December 2001, 03:29:12 UTC, committed by Anthony Baxter on 21 December 2001, 03:29:12 UTC
Py_Initialize(): Apply patch by Jürgen Hermann to call
    _PyImport_FixupExtension() on the exceptions module.  Now
    reload(exceptions) acts just like reload(sys) instead of raising
    an ImportError.

    This closes SF bug #422004.
1 parent f7adf24
Raw File
Tip revision: f3f6cfe1618213427ab7725465869f234a754f79 authored by Anthony Baxter on 21 December 2001, 03:29:12 UTC
backport 2.144:
Tip revision: f3f6cfe
WAIT.py
# Generated by h2py from /usr/include/sys/wait.h
WUNTRACED = 0004
WNOHANG = 0100
WEXITED = 0001
WTRAPPED = 0002
WSTOPPED = WUNTRACED
WCONTINUED = 0010
WNOWAIT = 0200
WOPTMASK = (WEXITED|WTRAPPED|WSTOPPED|WCONTINUED|WNOHANG|WNOWAIT)
WSTOPFLG = 0177
WCONTFLG = 0177777
WCOREFLG = 0200
WSIGMASK = 0177
back to top