fname
stringlengths
63
176
rel_fname
stringclasses
706 values
line
int64
-1
4.5k
name
stringlengths
1
81
kind
stringclasses
2 values
category
stringclasses
2 values
info
stringlengths
0
77.9k
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/conf.py
doc/conf.py
26
abspath
ref
function
sys.path.append(os.path.abspath("exts"))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
17
builder_inited
def
function
def builder_inited(app): """Output full documentation in ReST format for all extension modules.""" # PACKAGE/docs/exts/pylint_extensions.py --> PACKAGE/ base_path = os.path.dirname( os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ) # PACKAGE/ --> PACKAGE/pylint/extensions ext...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
20
dirname
ref
function
base_path = os.path.dirname(
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
21
dirname
ref
function
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
21
dirname
ref
function
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
21
abspath
ref
function
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
28
splitext
ref
function
name, ext = os.path.splitext(filename)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
39
PyLinter
ref
function
linter = PyLinter()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
40
load_plugin_modules
ref
function
linter.load_plugin_modules(modules)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
47
get_rst_title
ref
function
get_rst_title("Optional Pylint checkers in the extensions module", "=")
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
64
get_plugins_info
ref
function
by_checker = get_plugins_info(linter, doc_files)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
68
get_full_documentation
ref
function
print(checker.get_full_documentation(**information)[:-1], file=stream)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
71
get_plugins_info
def
function
def get_plugins_info(linter, doc_files): by_checker = {} for checker in linter.get_checkers(): if checker.name == MAIN_CHECKER_NAME: continue module = checker.__module__ # Plugins only - skip over core checkers if re.match("pylint.checkers", module): conti...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
73
get_checkers
ref
function
for checker in linter.get_checkers():
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
88
options_and_values
ref
function
by_checker[checker]["options"] += checker.options_and_values()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
96
options_and_values
ref
function
"options": list(checker.options_and_values()),
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
105
setup
def
function
def setup(app): app.connect("builder-inited", builder_inited) return {"version": sphinx.__display_version__}
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
106
connect
ref
function
app.connect("builder-inited", builder_inited)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_extensions.py
doc/exts/pylint_extensions.py
111
builder_inited
ref
function
builder_inited(None)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
14
builder_inited
def
function
def builder_inited(app): # PACKAGE/docs/exts/pylint_extensions.py --> PACKAGE/ base_path = os.path.dirname( os.path.dirname(os.path.dirname(os.path.abspath(__file__))) ) linter = PyLinter() linter.load_default_plugins() features = os.path.join(base_path, "doc", "technical_reference", "fe...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
16
dirname
ref
function
base_path = os.path.dirname(
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
17
dirname
ref
function
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
17
dirname
ref
function
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
17
abspath
ref
function
os.path.dirname(os.path.dirname(os.path.abspath(__file__)))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
19
PyLinter
ref
function
linter = PyLinter()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
20
load_default_plugins
ref
function
linter.load_default_plugins()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
26
print_full_documentation
ref
function
print_full_documentation(linter, stream)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
29
setup
def
function
def setup(app): app.connect("builder-inited", builder_inited) return {"version": sphinx.__display_version__}
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
30
connect
ref
function
app.connect("builder-inited", builder_inited)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_features.py
doc/exts/pylint_features.py
35
builder_inited
ref
function
builder_inited(None)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
29
MessageData
def
class
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
43
_register_all_checkers_and_extensions
def
function
def _register_all_checkers_and_extensions(linter: PyLinter) -> None: """Registers all checkers and extensions found in the default folders.""" initialize_checkers(linter) initialize_extensions(linter)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
45
initialize_checkers
ref
function
initialize_checkers(linter)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
46
initialize_extensions
ref
function
initialize_extensions(linter)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
49
_get_all_messages
def
function
def _get_all_messages( linter: PyLinter,
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
73
MessageData
ref
function
message_data = MessageData(
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
88
_write_message_page
def
function
def _write_message_page(messages_dict: MessagesDict) -> None: """Create or overwrite the file for each message.""" for category, messages in messages_dict.items(): category_dir = PYLINT_MESSAGES_PATH / category if not category_dir.exists(): category_dir.mkdir(parents=_True, exist_ok=...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
100
get_rst_title
ref
function
{get_rst_title(f"{message.name} / {message.id}", "=")}
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
114
_write_messages_list_page
def
function
def _write_messages_list_page( messages_dict: MessagesDict, old_messages_dict: OldMessagesDict
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
124
get_rst_title
ref
function
{get_rst_title("Overview of all Pylint messages", "=")}
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
154
get_rst_title
ref
function
f"""{get_rst_title(category.capitalize(), "-")}
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
174
_write_redirect_pages
def
function
def _write_redirect_pages(old_messages: OldMessagesDict) -> None: """Create redirect pages for old-messages.""" for category, old_names in old_messages.items(): category_dir = PYLINT_MESSAGES_PATH / category if not os.path.exists(category_dir): os.makedirs(category_dir) for o...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
189
get_rst_title
ref
function
{get_rst_title(" / ".join(old_name), "=")}
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
202
build_messages_pages
def
function
def build_messages_pages(app: Optional[Sphinx]) -> None: """Overwrite messages files by printing the documentation to a stream. Documentation is written in ReST format. """ # Create linter, register all checkers and extensions and get all messages linter = PyLinter() _register_all_checkers_and_e...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
207
PyLinter
ref
function
linter = PyLinter()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
208
_register_all_checkers_and_extensions
ref
function
_register_all_checkers_and_extensions(linter)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
209
_get_all_messages
ref
function
messages, old_messages = _get_all_messages(linter)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
212
_write_message_page
ref
function
_write_message_page(messages)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
213
_write_messages_list_page
ref
function
_write_messages_list_page(messages, old_messages)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
216
_write_redirect_pages
ref
function
_write_redirect_pages(old_messages)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
219
setup
def
function
def setup(app: Sphinx) -> None: """Connects the extension to the Sphinx process.""" # Register callback at the builder-inited Sphinx event # See https://www.sphinx-doc.org/en/master/extdev/appapi.html app.connect("builder-inited", build_messages_pages)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/doc/exts/pylint_messages.py
doc/exts/pylint_messages.py
223
connect
ref
function
app.connect("builder-inited", build_messages_pages)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom.py
examples/custom.py
13
MyAstroidChecker
def
class
visit_call
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom.py
examples/custom.py
51
visit_call
def
function
def visit_call(self, node: nodes.Call) -> None: """Called when a :class:`.nodes.Call` node is visited. See :mod:`astroid` for the description of available nodes. """ if not ( isinstance(node.func, nodes.Attribute) and isinstance(node.func.expr, nodes.Name) ...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom.py
examples/custom.py
63
frame
ref
class
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom.py
examples/custom.py
68
register
def
function
def register(linter: "PyLinter") -> None: """This required method auto registers the checker during initialization. :param linter: The linter to register the checker to. """ linter.register_checker(MyAstroidChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom.py
examples/custom.py
73
register_checker
ref
function
linter.register_checker(MyAstroidChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom.py
examples/custom.py
73
MyAstroidChecker
ref
function
linter.register_checker(MyAstroidChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
11
MyRawChecker
def
class
process_module
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
31
process_module
def
function
def process_module(self, node: nodes.Module) -> None: """Process a module. the module's content is accessible via node.stream() function """ with node.stream() as stream: for (lineno, line) in enumerate(stream): if line.rstrip().endswith("\\"): ...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
36
stream
ref
function
with node.stream() as stream:
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
39
add_message
ref
function
self.add_message("backslash-line-continuation", line=lineno)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
42
register
def
function
def register(linter: "PyLinter") -> None: """This required method auto registers the checker during initialization. :param linter: The linter to register the checker to. """ linter.register_checker(MyRawChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
47
register_checker
ref
function
linter.register_checker(MyRawChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/custom_raw.py
examples/custom_raw.py
47
MyRawChecker
ref
function
linter.register_checker(MyRawChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/deprecation_checker.py
examples/deprecation_checker.py
48
DeprecationChecker
def
class
deprecated_methods deprecated_arguments
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/deprecation_checker.py
examples/deprecation_checker.py
60
deprecated_methods
def
function
def deprecated_methods(self) -> Set[str]: """Callback method called by DeprecatedMixin for every method/function found in the code. Returns: collections.abc.Container of deprecated function/method names. """ return {"mymodule.deprecated_function", "mymodule.MyClass.depre...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/deprecation_checker.py
examples/deprecation_checker.py
68
deprecated_arguments
def
function
def deprecated_arguments( self, method: str ) -> Tuple[Tuple[Union[int, None], str], ...]: """Callback returning the deprecated arguments of method/function. Returns: collections.abc.Iterable in form: ((POSITION1, PARAM1), (POSITION2: PARAM2) ...) ...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/deprecation_checker.py
examples/deprecation_checker.py
94
register
def
function
def register(linter: "PyLinter") -> None: linter.register_checker(DeprecationChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/deprecation_checker.py
examples/deprecation_checker.py
95
register_checker
ref
function
linter.register_checker(DeprecationChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/examples/deprecation_checker.py
examples/deprecation_checker.py
95
DeprecationChecker
ref
function
linter.register_checker(DeprecationChecker(linter))
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
20
run_pylint
def
function
def run_pylint(argv: Optional[Sequence[str]] = None): """Run pylint. argv can be a sequence of strings normally supplied as arguments on the command line """ from pylint.lint import Run as PylintRun try: PylintRun(argv or sys.argv[1:]) except KeyboardInterrupt: sys.exit(1)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
28
PylintRun
ref
function
PylintRun(argv or sys.argv[1:])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
33
run_epylint
def
function
def run_epylint(argv: Optional[Sequence[str]] = None): """Run epylint. argv can be a list of strings normally supplied as arguments on the command line """ from pylint.epylint import Run as EpylintRun EpylintRun(argv)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
40
EpylintRun
ref
function
EpylintRun(argv)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
43
run_pyreverse
def
function
def run_pyreverse(argv: Optional[Sequence[str]] = None): """Run pyreverse. argv can be a sequence of strings normally supplied as arguments on the command line """ from pylint.pyreverse.main import Run as PyreverseRun PyreverseRun(argv or sys.argv[1:])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
50
PyreverseRun
ref
function
PyreverseRun(argv or sys.argv[1:])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
53
run_symilar
def
function
def run_symilar(argv: Optional[Sequence[str]] = None): """Run symilar. argv can be a sequence of strings normally supplied as arguments on the command line """ from pylint.checkers.similar import Run as SimilarRun SimilarRun(argv or sys.argv[1:])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
60
SimilarRun
ref
function
SimilarRun(argv or sys.argv[1:])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__init__.py
pylint/__init__.py
63
modify_sys_path
def
function
def modify_sys_path() -> None: """Modify sys path for execution as Python module. Strip out the current working directory from sys.path. Having the working directory in `sys.path` means that `pylint` might inadvertently import user code from modules having the same name as stdlib or pylint's own mo...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__main__.py
pylint/__main__.py
7
modify_sys_path
ref
function
pylint.modify_sys_path()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__main__.py
pylint/__main__.py
8
run_pylint
ref
function
pylint.run_pylint()
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__pkginfo__.py
pylint/__pkginfo__.py
7
get_numversion_from_version
def
function
def get_numversion_from_version(v: str) -> Tuple: """Kept for compatibility reason. See https://github.com/PyCQA/pylint/issues/4399 https://github.com/PyCQA/pylint/issues/4420, """ v = v.replace("pylint-", "") version = [] for n in v.split(".")[0:3]: try: version.append(...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/__pkginfo__.py
pylint/__pkginfo__.py
34
get_numversion_from_version
ref
function
numversion = get_numversion_from_version(__version__)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/__init__.py
pylint/checkers/__init__.py
73
table_lines_from_stats
def
function
def table_lines_from_stats( stats: LinterStats, old_stats: Optional[LinterStats], stat_type: Literal["duplicated_lines", "message_types"],
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/__init__.py
pylint/checkers/__init__.py
130
diff_string
ref
function
diff_string(old_value, new_value)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/__init__.py
pylint/checkers/__init__.py
140
initialize
def
function
def initialize(linter): """Initialize linter with checkers in this package.""" register_plugins(linter, __path__[0])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/__init__.py
pylint/checkers/__init__.py
142
register_plugins
ref
function
register_plugins(linter, __path__[0])
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
26
AsyncChecker
def
class
open visit_asyncfunctiondef visit_asyncwith
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
47
get_global_option
ref
function
self._ignore_mixin_members = utils.get_global_option(
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
50
get_global_option
ref
class
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
53
check_messages
ref
function
@checker_utils.check_messages("yield-inside-async-function")
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
54
visit_asyncfunctiondef
def
function
def visit_asyncfunctiondef(self, node: nodes.AsyncFunctionDef) -> None: for child in node.nodes_of_class(nodes.Yield): if child.scope() is node and ( sys.version_info[:2] == (3, 5) or isinstance(child, nodes.YieldFrom) ): self.add_message("yield-inside...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
55
nodes_of_class
ref
class
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
56
scope
ref
function
if child.scope() is node and (
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
59
add_message
ref
function
self.add_message("yield-inside-async-function", node=child)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
61
check_messages
ref
function
@checker_utils.check_messages("not-async-context-manager")
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
62
visit_asyncwith
def
function
def visit_asyncwith(self, node: nodes.AsyncWith) -> None: for ctx_mgr, _ in node.items: inferred = checker_utils.safe_infer(ctx_mgr) if inferred is None or inferred is astroid.Uninferable: continue if isinstance(inferred, nodes.AsyncFunctionDef): ...
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
64
safe_infer
ref
function
inferred = checker_utils.safe_infer(ctx_mgr)
playground/e9b22a58-260b-483f-88d7-7a5fe9f8b1d4/pylint/pylint/checkers/async.py
pylint/checkers/async.py
71
decorated_with
ref
function
if decorated_with(inferred, self._async_generators):