GRAYBYTE WORDPRESS FILE MANAGER9527

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /opt/cloudlinux/venv/lib/python3.11/site-packages/astroid/brain/
Upload Files :
Current_dir [ Not Writeable ] Document_root [ Writeable ]

Command :


Current File : /opt/cloudlinux/venv/lib/python3.11/site-packages/astroid/brain//brain_six.py
# Licensed under the LGPL: https://www.gnu.org/licenses/old-licenses/lgpl-2.1.en.html
# For details: https://github.com/PyCQA/astroid/blob/main/LICENSE
# Copyright (c) https://github.com/PyCQA/astroid/blob/main/CONTRIBUTORS.txt

"""Astroid hooks for six module."""

from textwrap import dedent

from astroid import nodes
from astroid.brain.helpers import register_module_extender
from astroid.builder import AstroidBuilder
from astroid.exceptions import (
    AstroidBuildingError,
    AttributeInferenceError,
    InferenceError,
)
from astroid.manager import AstroidManager

SIX_ADD_METACLASS = "six.add_metaclass"
SIX_WITH_METACLASS = "six.with_metaclass"


def default_predicate(line):
    return line.strip()


def _indent(text, prefix, predicate=default_predicate) -> str:
    """Adds 'prefix' to the beginning of selected lines in 'text'.

    If 'predicate' is provided, 'prefix' will only be added to the lines
    where 'predicate(line)' is True. If 'predicate' is not provided,
    it will default to adding 'prefix' to all non-empty lines that do not
    consist solely of whitespace characters.
    """

    def prefixed_lines():
        for line in text.splitlines(True):
            yield prefix + line if predicate(line) else line

    return "".join(prefixed_lines())


_IMPORTS = """
import _io
cStringIO = _io.StringIO
filter = filter
from itertools import filterfalse
input = input
from sys import intern
map = map
range = range
from importlib import reload
reload_module = lambda module: reload(module)
from functools import reduce
from shlex import quote as shlex_quote
from io import StringIO
from collections import UserDict, UserList, UserString
xrange = range
zip = zip
from itertools import zip_longest
import builtins
import configparser
import copyreg
import _dummy_thread
import http.cookiejar as http_cookiejar
import http.cookies as http_cookies
import html.entities as html_entities
import html.parser as html_parser
import http.client as http_client
import http.server as http_server
BaseHTTPServer = CGIHTTPServer = SimpleHTTPServer = http.server
import pickle as cPickle
import queue
import reprlib
import socketserver
import _thread
import winreg
import xmlrpc.server as xmlrpc_server
import xmlrpc.client as xmlrpc_client
import urllib.robotparser as urllib_robotparser
import email.mime.multipart as email_mime_multipart
import email.mime.nonmultipart as email_mime_nonmultipart
import email.mime.text as email_mime_text
import email.mime.base as email_mime_base
import urllib.parse as urllib_parse
import urllib.error as urllib_error
import tkinter
import tkinter.dialog as tkinter_dialog
import tkinter.filedialog as tkinter_filedialog
import tkinter.scrolledtext as tkinter_scrolledtext
import tkinter.simpledialog as tkinder_simpledialog
import tkinter.tix as tkinter_tix
import tkinter.ttk as tkinter_ttk
import tkinter.constants as tkinter_constants
import tkinter.dnd as tkinter_dnd
import tkinter.colorchooser as tkinter_colorchooser
import tkinter.commondialog as tkinter_commondialog
import tkinter.filedialog as tkinter_tkfiledialog
import tkinter.font as tkinter_font
import tkinter.messagebox as tkinter_messagebox
import urllib
import urllib.request as urllib_request
import urllib.robotparser as urllib_robotparser
import urllib.parse as urllib_parse
import urllib.error as urllib_error
"""


def six_moves_transform():
    code = dedent(
        """
    class Moves(object):
    {}
    moves = Moves()
    """
    ).format(_indent(_IMPORTS, "    "))
    module = AstroidBuilder(AstroidManager()).string_build(code)
    module.name = "six.moves"
    return module


def _six_fail_hook(modname):
    """Fix six.moves imports due to the dynamic nature of this
    class.

    Construct a pseudo-module which contains all the necessary imports
    for six

    :param modname: Name of failed module
    :type modname: str

    :return: An astroid module
    :rtype: nodes.Module
    """

    attribute_of = modname != "six.moves" and modname.startswith("six.moves")
    if modname != "six.moves" and not attribute_of:
        raise AstroidBuildingError(modname=modname)
    module = AstroidBuilder(AstroidManager()).string_build(_IMPORTS)
    module.name = "six.moves"
    if attribute_of:
        # Facilitate import of submodules in Moves
        start_index = len(module.name)
        attribute = modname[start_index:].lstrip(".").replace(".", "_")
        try:
            import_attr = module.getattr(attribute)[0]
        except AttributeInferenceError as exc:
            raise AstroidBuildingError(modname=modname) from exc
        if isinstance(import_attr, nodes.Import):
            submodule = AstroidManager().ast_from_module_name(import_attr.names[0][0])
            return submodule
    # Let dummy submodule imports pass through
    # This will cause an Uninferable result, which is okay
    return module


def _looks_like_decorated_with_six_add_metaclass(node) -> bool:
    if not node.decorators:
        return False

    for decorator in node.decorators.nodes:
        if not isinstance(decorator, nodes.Call):
            continue
        if decorator.func.as_string() == SIX_ADD_METACLASS:
            return True
    return False


def transform_six_add_metaclass(node):  # pylint: disable=inconsistent-return-statements
    """Check if the given class node is decorated with *six.add_metaclass*.

    If so, inject its argument as the metaclass of the underlying class.
    """
    if not node.decorators:
        return

    for decorator in node.decorators.nodes:
        if not isinstance(decorator, nodes.Call):
            continue

        try:
            func = next(decorator.func.infer())
        except (InferenceError, StopIteration):
            continue
        if func.qname() == SIX_ADD_METACLASS and decorator.args:
            metaclass = decorator.args[0]
            node._metaclass = metaclass
            return node
    return


def _looks_like_nested_from_six_with_metaclass(node) -> bool:
    if len(node.bases) != 1:
        return False
    base = node.bases[0]
    if not isinstance(base, nodes.Call):
        return False
    try:
        if hasattr(base.func, "expr"):
            # format when explicit 'six.with_metaclass' is used
            mod = base.func.expr.name
            func = base.func.attrname
            func = f"{mod}.{func}"
        else:
            # format when 'with_metaclass' is used directly (local import from six)
            # check reference module to avoid 'with_metaclass' name clashes
            mod = base.parent.parent
            import_from = mod.locals["with_metaclass"][0]
            func = f"{import_from.modname}.{base.func.name}"
    except (AttributeError, KeyError, IndexError):
        return False
    return func == SIX_WITH_METACLASS


def transform_six_with_metaclass(node):
    """Check if the given class node is defined with *six.with_metaclass*.

    If so, inject its argument as the metaclass of the underlying class.
    """
    call = node.bases[0]
    node._metaclass = call.args[0]
    return node


register_module_extender(AstroidManager(), "six", six_moves_transform)
register_module_extender(
    AstroidManager(), "requests.packages.urllib3.packages.six", six_moves_transform
)
AstroidManager().register_failed_import_hook(_six_fail_hook)
AstroidManager().register_transform(
    nodes.ClassDef,
    transform_six_add_metaclass,
    _looks_like_decorated_with_six_add_metaclass,
)
AstroidManager().register_transform(
    nodes.ClassDef,
    transform_six_with_metaclass,
    _looks_like_nested_from_six_with_metaclass,
)

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
May 15 2025 08:30:33
root / root
0755
__pycache__
--
May 15 2025 08:30:33
root / root
0755
__init__.py
0 KB
April 17 2025 13:10:59
root / root
0644
brain_argparse.py
1.521 KB
April 17 2025 13:10:59
root / root
0644
brain_attrs.py
2.967 KB
April 17 2025 13:10:59
root / root
0644
brain_boto3.py
0.988 KB
April 17 2025 13:10:59
root / root
0644
brain_builtin_inference.py
33.451 KB
April 17 2025 13:10:59
root / root
0644
brain_collections.py
4.313 KB
April 17 2025 13:10:59
root / root
0644
brain_crypt.py
0.843 KB
April 17 2025 13:10:59
root / root
0644
brain_ctypes.py
2.598 KB
April 17 2025 13:10:59
root / root
0644
brain_curses.py
3.396 KB
April 17 2025 13:10:59
root / root
0644
brain_dataclasses.py
21.571 KB
April 17 2025 13:10:59
root / root
0644
brain_dateutil.py
0.749 KB
April 17 2025 13:10:59
root / root
0644
brain_fstrings.py
2.413 KB
April 17 2025 13:10:59
root / root
0644
brain_functools.py
5.846 KB
April 17 2025 13:10:59
root / root
0644
brain_gi.py
7.366 KB
April 17 2025 13:10:59
root / root
0644
brain_hashlib.py
2.755 KB
April 17 2025 13:10:59
root / root
0644
brain_http.py
10.391 KB
April 17 2025 13:10:59
root / root
0644
brain_hypothesis.py
1.691 KB
April 17 2025 13:10:59
root / root
0644
brain_io.py
1.49 KB
April 17 2025 13:10:59
root / root
0644
brain_mechanize.py
2.584 KB
April 17 2025 13:10:59
root / root
0644
brain_multiprocessing.py
3.136 KB
April 17 2025 13:10:59
root / root
0644
brain_namedtuple_enum.py
22.192 KB
April 17 2025 13:10:59
root / root
0644
brain_nose.py
2.266 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_einsumfunc.py
0.806 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_fromnumeric.py
0.715 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_function_base.py
1.268 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_multiarray.py
4.139 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_numeric.py
1.591 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_numerictypes.py
8.346 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_core_umath.py
4.778 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_ma.py
0.875 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_ndarray.py
8.787 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_random_mtrand.py
3.355 KB
April 17 2025 13:10:59
root / root
0644
brain_numpy_utils.py
2.575 KB
April 17 2025 13:10:59
root / root
0644
brain_pathlib.py
1.506 KB
April 17 2025 13:10:59
root / root
0644
brain_pkg_resources.py
2.148 KB
April 17 2025 13:10:59
root / root
0644
brain_pytest.py
2.171 KB
April 17 2025 13:10:59
root / root
0644
brain_qt.py
2.742 KB
April 17 2025 13:10:59
root / root
0644
brain_random.py
2.822 KB
April 17 2025 13:10:59
root / root
0644
brain_re.py
2.803 KB
April 17 2025 13:10:59
root / root
0644
brain_regex.py
3.283 KB
April 17 2025 13:10:59
root / root
0644
brain_responses.py
1.824 KB
April 17 2025 13:10:59
root / root
0644
brain_scipy_signal.py
2.223 KB
April 17 2025 13:10:59
root / root
0644
brain_signal.py
3.789 KB
April 17 2025 13:10:59
root / root
0644
brain_six.py
7.416 KB
April 17 2025 13:10:59
root / root
0644
brain_sqlalchemy.py
0.985 KB
April 17 2025 13:10:59
root / root
0644
brain_ssl.py
6.4 KB
April 17 2025 13:10:59
root / root
0644
brain_subprocess.py
2.926 KB
April 17 2025 13:10:59
root / root
0644
brain_threading.py
0.85 KB
April 17 2025 13:10:59
root / root
0644
brain_type.py
2.425 KB
April 17 2025 13:10:59
root / root
0644
brain_typing.py
13.979 KB
April 17 2025 13:10:59
root / root
0644
brain_unittest.py
1.12 KB
April 17 2025 13:10:59
root / root
0644
brain_uuid.py
0.651 KB
April 17 2025 13:10:59
root / root
0644
helpers.py
0.887 KB
April 17 2025 13:10:59
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF