summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Sottile <asottile@umich.edu>2022-11-27 12:51:53 -0800
committerGitHub <noreply@github.com>2022-11-27 15:51:53 -0500
commit4158a4537773ec3da41aed5afdea46c121082804 (patch)
treed562833e95fc4dcea7fc4f97aaeef8992007f1c0
parentfba640d669f03478a1c1ee9db5d432ab8f77b3bd (diff)
downloadpyflakes-4158a4537773ec3da41aed5afdea46c121082804.tar.gz
remove outdated / incorrect comments (#753)
-rw-r--r--pyflakes/checker.py12
1 files changed, 1 insertions, 11 deletions
diff --git a/pyflakes/checker.py b/pyflakes/checker.py
index 13d2452..919e1bb 100644
--- a/pyflakes/checker.py
+++ b/pyflakes/checker.py
@@ -718,17 +718,7 @@ def in_string_annotation(func):
class Checker:
- """
- I check the cleanliness and sanity of Python code.
-
- @ivar _deferredFunctions: Tracking list used by L{deferFunction}. Elements
- of the list are two-tuples. The first element is the callable passed
- to L{deferFunction}. The second element is a copy of the scope stack
- at the time L{deferFunction} was called.
-
- @ivar _deferredAssignments: Similar to C{_deferredFunctions}, but for
- callables which are deferred assignment checks.
- """
+ """I check the cleanliness and sanity of Python code."""
_ast_node_scope = {
ast.Module: ModuleScope,