Skip to content
Snippets Groups Projects
Commit e8c36131 authored by Yuya Nishihara's avatar Yuya Nishihara
Browse files

py3: silence the final IOError by closing stdout/err slightly early

Fixes the following test failure:

  $ hg status >/dev/full
  abort: No space left on device
  Exception ignored in: <_io.TextIOWrapper name='<stdout>' mode='w' ...
  OSError: [Errno 28] No space left on device
  [120]
parent c263c684
No related branches found
No related tags found
No related merge requests found
......@@ -105,8 +105,10 @@
# change the status code and move on.
except IOError:
status = -1
_silencestdio()
sys.exit(status & 255)
if pycompat.ispy3:
def _initstdio():
pass
......@@ -108,10 +110,27 @@
sys.exit(status & 255)
if pycompat.ispy3:
def _initstdio():
pass
def _silencestdio():
for fp in (sys.stdout, sys.stderr):
# Check if the file is okay
try:
fp.flush()
continue
except IOError:
pass
# Otherwise mark it as closed to silence "Exception ignored in"
# message emitted by the interpreter finalizer. Be careful to
# not close util.stdout, which may be a fdopen-ed file object and
# its close() actually closes the underlying file descriptor.
try:
fp.close()
except IOError:
pass
else:
def _initstdio():
for fp in (sys.stdin, sys.stdout, sys.stderr):
util.setbinary(fp)
......@@ -113,8 +132,11 @@
else:
def _initstdio():
for fp in (sys.stdin, sys.stdout, sys.stderr):
util.setbinary(fp)
def _silencestdio():
pass
def _getsimilar(symbols, value):
sim = lambda x: difflib.SequenceMatcher(None, value, x).ratio()
# The cutoff for similarity here is pretty arbitrary. It should
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment