From: Irit Katriel <1055913+iritkatriel@users.noreply.github.com> Date: Mon, 28 Mar 2022 21:02:57 +0000 (+0100) Subject: bpo-26120: make pydoc exclude __future__ imports from the data block of the module... X-Git-Tag: v3.11.0a7~112 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=15ba8167d78f9e66bd5b07c4e5cbb0463460310a;p=thirdparty%2FPython%2Fcpython.git bpo-26120: make pydoc exclude __future__ imports from the data block of the module (GH-30888) --- diff --git a/Lib/pydoc.py b/Lib/pydoc.py index 85eefa46b729..7ae390852fa0 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -54,6 +54,7 @@ Richard Chamberlain, for the first implementation of textdoc. # the current directory is changed with os.chdir(), an incorrect # path will be displayed. +import __future__ import builtins import importlib._bootstrap import importlib._bootstrap_external @@ -274,6 +275,8 @@ def _split_list(s, predicate): no.append(x) return yes, no +_future_feature_names = set(__future__.all_feature_names) + def visiblename(name, all=None, obj=None): """Decide whether to show documentation on a variable.""" # Certain special names are redundant or internal. @@ -288,6 +291,10 @@ def visiblename(name, all=None, obj=None): # Namedtuples have public fields and methods with a single leading underscore if name.startswith('_') and hasattr(obj, '_fields'): return True + # Ignore __future__ imports. + if name in _future_feature_names: + if isinstance(getattr(obj, name, None), __future__._Feature): + return False if all is not None: # only document that which the programmer exported in __all__ return name in all diff --git a/Lib/test/pydoc_mod.py b/Lib/test/pydoc_mod.py index f9bc4b89d3d0..80c287fb10c3 100644 --- a/Lib/test/pydoc_mod.py +++ b/Lib/test/pydoc_mod.py @@ -1,5 +1,7 @@ """This is a test module for test_pydoc""" +from __future__ import print_function + import types import typing diff --git a/Misc/NEWS.d/next/Library/2022-01-25-15-45-04.bpo-26120.YzrBMO.rst b/Misc/NEWS.d/next/Library/2022-01-25-15-45-04.bpo-26120.YzrBMO.rst new file mode 100644 index 000000000000..bc45b277d8d6 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-01-25-15-45-04.bpo-26120.YzrBMO.rst @@ -0,0 +1 @@ +:mod:`pydoc` now excludes __future__ imports from the module's data items.