- Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.

parent d8e39014
......@@ -212,8 +212,8 @@ def source_synopsis(file):
def synopsis(filename, cache={}):
"""Get the one-line summary out of a module file."""
mtime = os.stat(filename).st_mtime
lastupdate, result = cache.get(filename, (0, None))
if lastupdate < mtime:
lastupdate, result = cache.get(filename, (None, None))
if lastupdate is None or lastupdate < mtime:
info = inspect.getmoduleinfo(filename)
try:
file = open(filename)
......
......@@ -37,6 +37,8 @@ Core and Builtins
Library
-------
- Issue #12603: Fix pydoc.synopsis() on files with non-negative st_mtime.
- Issue #12607: In subprocess, fix issue where if stdin, stdout or stderr is
given as a low fd, it gets overwritten.
......
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