diff options
Diffstat (limited to 'Lib/pydoc.py')
| -rwxr-xr-x | Lib/pydoc.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 490eb210d2..81fcfd9f0c 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -223,7 +223,7 @@ def synopsis(filename, cache={}):      if lastupdate is None or lastupdate < mtime:          try:              file = tokenize.open(filename) -        except IOError: +        except OSError:              # module can't be opened, so skip it              return None          binary_suffixes = importlib.machinery.BYTECODE_SUFFIXES[:] @@ -1419,7 +1419,7 @@ def pipepager(text, cmd):      try:          pipe.write(text)          pipe.close() -    except IOError: +    except OSError:          pass # Ignore broken pipes caused by quitting the pager program.  def tempfilepager(text, cmd):  | 
