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/test/test_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/test/test_inspect.py')
-rw-r--r-- | Lib/test/test_inspect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_inspect.py b/Lib/test/test_inspect.py index c25256d..5616881 100644 --- a/Lib/test/test_inspect.py +++ b/Lib/test/test_inspect.py @@ -109,7 +109,7 @@ class IsTestBase(unittest.TestCase): def test__all__(self): support.check__all__(self, inspect, not_exported=("k", "v", "mod_dict", "modulesbyfile")) - + def generator_function_example(self): for i in range(2): yield i |