• Victor Stinner's avatar
    Fix race condition in create_stdio() · 6fb5bae2
    Victor Stinner yazdı
    Issue #24891: Fix a race condition at Python startup if the file descriptor
    of stdin (0), stdout (1) or stderr (2) is closed while Python is creating
    sys.stdin, sys.stdout and sys.stderr objects. These attributes are now set
    to None if the creation of the object failed, instead of raising an OSError
    exception. Initial patch written by Marco Paolini.
    6fb5bae2
pythonrun.c 83.7 KB