Kaydet (Commit) a0d55de8 authored tarafından Tim Peters's avatar Tim Peters

Whitespace normalization.

üst 4030714a
...@@ -58,11 +58,14 @@ except (ImportError, AttributeError): ...@@ -58,11 +58,14 @@ except (ImportError, AttributeError):
release = acquire release = acquire
_text_openflags = _os.O_RDWR | _os.O_CREAT | _os.O_EXCL _text_openflags = _os.O_RDWR | _os.O_CREAT | _os.O_EXCL
if hasattr(_os, 'O_NOINHERIT'): _text_openflags |= _os.O_NOINHERIT if hasattr(_os, 'O_NOINHERIT'):
if hasattr(_os, 'O_NOFOLLOW'): _text_openflags |= _os.O_NOFOLLOW _text_openflags |= _os.O_NOINHERIT
if hasattr(_os, 'O_NOFOLLOW'):
_text_openflags |= _os.O_NOFOLLOW
_bin_openflags = _text_openflags _bin_openflags = _text_openflags
if hasattr(_os, 'O_BINARY'): _bin_openflags |= _os.O_BINARY if hasattr(_os, 'O_BINARY'):
_bin_openflags |= _os.O_BINARY
if hasattr(_os, 'TMP_MAX'): if hasattr(_os, 'TMP_MAX'):
TMP_MAX = _os.TMP_MAX TMP_MAX = _os.TMP_MAX
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment