/opt/imh-python/lib/python3.9/site-packages/astroid/brain
NameSizeModeActions
__pycache__/-0755rm
brain_argparse.py18130644editdlrm
brain_attrs.py33520644editdlrm
brain_boto3.py10720644editdlrm
brain_builtin_inference.py374330644editdlrm
brain_collections.py47870644editdlrm
brain_crypt.py9150644editdlrm
brain_ctypes.py27200644editdlrm
brain_curses.py35290644editdlrm
brain_dataclasses.py223630644editdlrm
brain_datetime.py7710644editdlrm
brain_dateutil.py8190644editdlrm
brain_functools.py63900644editdlrm
brain_gi.py75980644editdlrm
brain_hashlib.py27570644editdlrm
brain_http.py106870644editdlrm
brain_hypothesis.py18000644editdlrm
brain_io.py15890644editdlrm
brain_mechanize.py26980644editdlrm
brain_multiprocessing.py32600644editdlrm
brain_namedtuple_enum.py239120644editdlrm
brain_nose.py24020644editdlrm
brain_numpy_core_einsumfunc.py8850644editdlrm
brain_numpy_core_fromnumeric.py7920644editdlrm
brain_numpy_core_function_base.py14080644editdlrm
brain_numpy_core_multiarray.py44000644editdlrm
brain_numpy_core_numeric.py17400644editdlrm
brain_numpy_core_numerictypes.py86060644editdlrm
brain_numpy_core_umath.py49390644editdlrm
brain_numpy_ma.py9480644editdlrm
brain_numpy_ndarray.py90660644editdlrm
brain_numpy_random_mtrand.py34960644editdlrm
brain_numpy_utils.py25530644editdlrm
brain_pathlib.py17050644editdlrm
brain_pkg_resources.py22520644editdlrm
brain_pytest.py22700644editdlrm
brain_qt.py28740644editdlrm
brain_random.py31700644editdlrm
brain_re.py29660644editdlrm
brain_regex.py34330644editdlrm
brain_responses.py19200644editdlrm
brain_scipy_signal.py23280644editdlrm
brain_signal.py39320644editdlrm
brain_six.py76660644editdlrm
brain_sqlalchemy.py10610644editdlrm
brain_ssl.py67160644editdlrm
brain_subprocess.py29710644editdlrm
brain_threading.py9220644editdlrm
brain_type.py24810644editdlrm
brain_typing.py167170644editdlrm
brain_unittest.py11360644editdlrm
brain_uuid.py7270644editdlrm
helpers.py43030644editdlrm
__init__.py00644editdlrm
Edit: /opt/imh-python/lib/python3.9/site-packages/astroid/brain/brain_mechanize.py (2698B)
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html # For details: https://github.com/pylint-dev/astroid/blob/main/LICENSE # Copyright (c) https://github.com/pylint-dev/astroid/blob/main/CONTRIBUTORS.txt from astroid.brain.helpers import register_module_extender from astroid.builder import AstroidBuilder from astroid.manager import AstroidManager def mechanize_transform(): return AstroidBuilder(AstroidManager()).string_build( """class Browser(object): def __getattr__(self, name): return None def __getitem__(self, name): return None def __setitem__(self, name, val): return None def back(self, n=1): return None def clear_history(self): return None def click(self, *args, **kwds): return None def click_link(self, link=None, **kwds): return None def close(self): return None def encoding(self): return None def find_link( self, text=None, text_regex=None, name=None, name_regex=None, url=None, url_regex=None, tag=None, predicate=None, nr=0, ): return None def follow_link(self, link=None, **kwds): return None def forms(self): return None def geturl(self): return None def global_form(self): return None def links(self, **kwds): return None def open_local_file(self, filename): return None def open(self, url, data=None, timeout=None): return None def open_novisit(self, url, data=None, timeout=None): return None def open_local_file(self, filename): return None def reload(self): return None def response(self): return None def select_form(self, name=None, predicate=None, nr=None, **attrs): return None def set_cookie(self, cookie_string): return None def set_handle_referer(self, handle): return None def set_header(self, header, value=None): return None def set_html(self, html, url="http://example.com/"): return None def set_response(self, response): return None def set_simple_cookie(self, name, value, domain, path="/"): return None def submit(self, *args, **kwds): return None def title(self): return None def viewing_html(self): return None def visit_response(self, response, request=None): return None """ ) def register(manager: AstroidManager) -> None: register_module_extender(manager, "mechanize", mechanize_transform)