diff options
author | AN Long <aisk@users.noreply.github.com> | 2021-12-15 16:35:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-15 16:35:21 (GMT) |
commit | f62420c3d3f5d87f2b57e54b2a98682bc835f7b6 (patch) | |
tree | 3cf9b4abd5f46be10d6d80e0d23bc684f5a74056 /Lib/inspect.py | |
parent | 342b93f9f28746abb7b221a61d5a9b26ccbb395a (diff) | |
download | cpython-f62420c3d3f5d87f2b57e54b2a98682bc835f7b6.zip cpython-f62420c3d3f5d87f2b57e54b2a98682bc835f7b6.tar.gz cpython-f62420c3d3f5d87f2b57e54b2a98682bc835f7b6.tar.bz2 |
Remove spaces in empty lines (GH-30121)
Diffstat (limited to 'Lib/inspect.py')
-rw-r--r-- | Lib/inspect.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/inspect.py b/Lib/inspect.py index 746f6e4..5d33f0d 100644 --- a/Lib/inspect.py +++ b/Lib/inspect.py @@ -32,7 +32,7 @@ Here are some of the useful functions provided by this module: __author__ = ('Ka-Ping Yee <ping@lfw.org>', 'Yury Selivanov <yselivanov@sprymix.com>') - + __all__ = [ "ArgInfo", "Arguments", @@ -131,7 +131,7 @@ __all__ = [ "walktree", ] - + import abc import ast import dis @@ -591,7 +591,7 @@ def getmembers_static(object, predicate=None): without triggering dynamic lookup via the descriptor protocol, __getattr__ or __getattribute__. Optionally, only return members that satisfy a given predicate. - + Note: this function may not be able to retrieve all members that getmembers can fetch (like dynamically created attributes) and may find members that getmembers can't (like descriptors |