Psyduck - 可達鴨 之 鴨力山大2


Server : LiteSpeed
System : Linux premium217.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User : alloknri ( 880)
PHP Version : 8.1.34
Disable Function : NONE
Directory :  /usr/lib64/python2.7/lib2to3/fixes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : //usr/lib64/python2.7/lib2to3/fixes/fix_imports.py
"""Fix incompatible imports and module references."""
# Authors: Collin Winter, Nick Edds

# Local imports
from .. import fixer_base
from ..fixer_util import Name, attr_chain

MAPPING = {'StringIO':  'io',
           'cStringIO': 'io',
           'cPickle': 'pickle',
           '__builtin__' : 'builtins',
           'copy_reg': 'copyreg',
           'Queue': 'queue',
           'SocketServer': 'socketserver',
           'ConfigParser': 'configparser',
           'repr': 'reprlib',
           'FileDialog': 'tkinter.filedialog',
           'tkFileDialog': 'tkinter.filedialog',
           'SimpleDialog': 'tkinter.simpledialog',
           'tkSimpleDialog': 'tkinter.simpledialog',
           'tkColorChooser': 'tkinter.colorchooser',
           'tkCommonDialog': 'tkinter.commondialog',
           'Dialog': 'tkinter.dialog',
           'Tkdnd': 'tkinter.dnd',
           'tkFont': 'tkinter.font',
           'tkMessageBox': 'tkinter.messagebox',
           'ScrolledText': 'tkinter.scrolledtext',
           'Tkconstants': 'tkinter.constants',
           'Tix': 'tkinter.tix',
           'ttk': 'tkinter.ttk',
           'Tkinter': 'tkinter',
           'markupbase': '_markupbase',
           '_winreg': 'winreg',
           'thread': '_thread',
           'dummy_thread': '_dummy_thread',
           # anydbm and whichdb are handled by fix_imports2
           'dbhash': 'dbm.bsd',
           'dumbdbm': 'dbm.dumb',
           'dbm': 'dbm.ndbm',
           'gdbm': 'dbm.gnu',
           'xmlrpclib': 'xmlrpc.client',
           'DocXMLRPCServer': 'xmlrpc.server',
           'SimpleXMLRPCServer': 'xmlrpc.server',
           'httplib': 'http.client',
           'htmlentitydefs' : 'html.entities',
           'HTMLParser' : 'html.parser',
           'Cookie': 'http.cookies',
           'cookielib': 'http.cookiejar',
           'BaseHTTPServer': 'http.server',
           'SimpleHTTPServer': 'http.server',
           'CGIHTTPServer': 'http.server',
           #'test.test_support': 'test.support',
           'commands': 'subprocess',
           'UserString' : 'collections',
           'UserList' : 'collections',
           'urlparse' : 'urllib.parse',
           'robotparser' : 'urllib.robotparser',
}


def alternates(members):
    return "(" + "|".join(map(repr, members)) + ")"


def build_pattern(mapping=MAPPING):
    mod_list = ' | '.join(["module_name='%s'" % key for key in mapping])
    bare_names = alternates(mapping.keys())

    yield """name_import=import_name< 'import' ((%s) |
               multiple_imports=dotted_as_names< any* (%s) any* >) >
          """ % (mod_list, mod_list)
    yield """import_from< 'from' (%s) 'import' ['(']
              ( any | import_as_name< any 'as' any > |
                import_as_names< any* >)  [')'] >
          """ % mod_list
    yield """import_name< 'import' (dotted_as_name< (%s) 'as' any > |
               multiple_imports=dotted_as_names<
                 any* dotted_as_name< (%s) 'as' any > any* >) >
          """ % (mod_list, mod_list)

    # Find usages of module members in code e.g. thread.foo(bar)
    yield "power< bare_with_attr=(%s) trailer<'.' any > any* >" % bare_names


class FixImports(fixer_base.BaseFix):

    BM_compatible = True
    keep_line_order = True
    # This is overridden in fix_imports2.
    mapping = MAPPING

    # We want to run this fixer late, so fix_import doesn't try to make stdlib
    # renames into relative imports.
    run_order = 6

    def build_pattern(self):
        return "|".join(build_pattern(self.mapping))

    def compile_pattern(self):
        # We override this, so MAPPING can be pragmatically altered and the
        # changes will be reflected in PATTERN.
        self.PATTERN = self.build_pattern()
        super(FixImports, self).compile_pattern()

    # Don't match the node if it's within another match.
    def match(self, node):
        match = super(FixImports, self).match
        results = match(node)
        if results:
            # Module usage could be in the trailer of an attribute lookup, so we
            # might have nested matches when "bare_with_attr" is present.
            if "bare_with_attr" not in results and \
                    any(match(obj) for obj in attr_chain(node, "parent")):
                return False
            return results
        return False

    def start_tree(self, tree, filename):
        super(FixImports, self).start_tree(tree, filename)
        self.replace = {}

    def transform(self, node, results):
        import_mod = results.get("module_name")
        if import_mod:
            mod_name = import_mod.value
            new_name = unicode(self.mapping[mod_name])
            import_mod.replace(Name(new_name, prefix=import_mod.prefix))
            if "name_import" in results:
                # If it's not a "from x import x, y" or "import x as y" import,
                # marked its usage to be replaced.
                self.replace[mod_name] = new_name
            if "multiple_imports" in results:
                # This is a nasty hack to fix multiple imports on a line (e.g.,
                # "import StringIO, urlparse"). The problem is that I can't
                # figure out an easy way to make a pattern recognize the keys of
                # MAPPING randomly sprinkled in an import statement.
                results = self.match(node)
                if results:
                    self.transform(node, results)
        else:
            # Replace usage of the module.
            bare_name = results["bare_with_attr"][0]
            new_name = self.replace.get(bare_name.value)
            if new_name:
                bare_name.replace(Name(new_name, prefix=bare_name.prefix))
Name
Size
Permissions
Options
__init__.py
0.046 KB
-rw-r--r--
__init__.pyc
0.13 KB
-rw-r--r--
__init__.pyo
0.13 KB
-rw-r--r--
fix_apply.py
2.376 KB
-rw-r--r--
fix_apply.pyc
2.035 KB
-rw-r--r--
fix_apply.pyo
2.003 KB
-rw-r--r--
fix_asserts.py
0.961 KB
-rw-r--r--
fix_asserts.pyc
1.524 KB
-rw-r--r--
fix_asserts.pyo
1.524 KB
-rw-r--r--
fix_basestring.py
0.313 KB
-rw-r--r--
fix_basestring.pyc
0.788 KB
-rw-r--r--
fix_basestring.pyo
0.788 KB
-rw-r--r--
fix_buffer.py
0.577 KB
-rw-r--r--
fix_buffer.pyc
0.941 KB
-rw-r--r--
fix_buffer.pyo
0.941 KB
-rw-r--r--
fix_dict.py
3.734 KB
-rw-r--r--
fix_dict.pyc
3.681 KB
-rw-r--r--
fix_dict.pyo
3.559 KB
-rw-r--r--
fix_except.py
3.273 KB
-rw-r--r--
fix_except.pyc
2.938 KB
-rw-r--r--
fix_except.pyo
2.938 KB
-rw-r--r--
fix_exec.py
0.979 KB
-rw-r--r--
fix_exec.pyc
1.398 KB
-rw-r--r--
fix_exec.pyo
1.366 KB
-rw-r--r--
fix_execfile.py
2.008 KB
-rw-r--r--
fix_execfile.pyc
2.059 KB
-rw-r--r--
fix_execfile.pyo
2.026 KB
-rw-r--r--
fix_exitfunc.py
2.444 KB
-rw-r--r--
fix_exitfunc.pyc
2.692 KB
-rw-r--r--
fix_exitfunc.pyo
2.692 KB
-rw-r--r--
fix_filter.py
2.058 KB
-rw-r--r--
fix_filter.pyc
2.217 KB
-rw-r--r--
fix_filter.pyo
2.217 KB
-rw-r--r--
fix_funcattrs.py
0.63 KB
-rw-r--r--
fix_funcattrs.pyc
1.102 KB
-rw-r--r--
fix_funcattrs.pyo
1.102 KB
-rw-r--r--
fix_future.py
0.534 KB
-rw-r--r--
fix_future.pyc
0.911 KB
-rw-r--r--
fix_future.pyo
0.911 KB
-rw-r--r--
fix_getcwdu.py
0.441 KB
-rw-r--r--
fix_getcwdu.pyc
0.918 KB
-rw-r--r--
fix_getcwdu.pyo
0.918 KB
-rw-r--r--
fix_has_key.py
3.151 KB
-rw-r--r--
fix_has_key.pyc
3.123 KB
-rw-r--r--
fix_has_key.pyo
3.091 KB
-rw-r--r--
fix_idioms.py
4.774 KB
-rw-r--r--
fix_idioms.pyc
4.431 KB
-rw-r--r--
fix_idioms.pyo
4.329 KB
-rw-r--r--
fix_import.py
3.184 KB
-rw-r--r--
fix_import.pyc
3.177 KB
-rw-r--r--
fix_import.pyo
3.177 KB
-rw-r--r--
fix_imports.py
5.56 KB
-rw-r--r--
fix_imports.pyc
5.254 KB
-rw-r--r--
fix_imports.pyo
5.254 KB
-rw-r--r--
fix_imports2.py
0.282 KB
-rw-r--r--
fix_imports2.pyc
0.619 KB
-rw-r--r--
fix_imports2.pyo
0.619 KB
-rw-r--r--
fix_input.py
0.693 KB
-rw-r--r--
fix_input.pyc
1.121 KB
-rw-r--r--
fix_input.pyo
1.121 KB
-rw-r--r--
fix_intern.py
1.822 KB
-rw-r--r--
fix_intern.pyc
1.755 KB
-rw-r--r--
fix_intern.pyo
1.755 KB
-rw-r--r--
fix_isinstance.py
1.571 KB
-rw-r--r--
fix_isinstance.pyc
1.809 KB
-rw-r--r--
fix_isinstance.pyo
1.809 KB
-rw-r--r--
fix_itertools.py
1.514 KB
-rw-r--r--
fix_itertools.pyc
1.763 KB
-rw-r--r--
fix_itertools.pyo
1.763 KB
-rw-r--r--
fix_itertools_imports.py
2.045 KB
-rw-r--r--
fix_itertools_imports.pyc
1.982 KB
-rw-r--r--
fix_itertools_imports.pyo
1.938 KB
-rw-r--r--
fix_long.py
0.466 KB
-rw-r--r--
fix_long.pyc
0.835 KB
-rw-r--r--
fix_long.pyo
0.835 KB
-rw-r--r--
fix_map.py
2.99 KB
-rw-r--r--
fix_map.pyc
2.982 KB
-rw-r--r--
fix_map.pyo
2.982 KB
-rw-r--r--
fix_metaclass.py
8.023 KB
-rw-r--r--
fix_metaclass.pyc
6.45 KB
-rw-r--r--
fix_metaclass.pyo
6.401 KB
-rw-r--r--
fix_methodattrs.py
0.601 KB
-rw-r--r--
fix_methodattrs.pyc
1.125 KB
-rw-r--r--
fix_methodattrs.pyo
1.125 KB
-rw-r--r--
fix_ne.py
0.56 KB
-rw-r--r--
fix_ne.pyc
0.978 KB
-rw-r--r--
fix_ne.pyo
0.978 KB
-rw-r--r--
fix_next.py
3.106 KB
-rw-r--r--
fix_next.pyc
3.472 KB
-rw-r--r--
fix_next.pyo
3.439 KB
-rw-r--r--
fix_nonzero.py
0.584 KB
-rw-r--r--
fix_nonzero.pyc
1.074 KB
-rw-r--r--
fix_nonzero.pyo
1.074 KB
-rw-r--r--
fix_numliterals.py
0.755 KB
-rw-r--r--
fix_numliterals.pyc
1.235 KB
-rw-r--r--
fix_numliterals.pyo
1.235 KB
-rw-r--r--
fix_operator.py
3.391 KB
-rw-r--r--
fix_operator.pyc
5.029 KB
-rw-r--r--
fix_operator.pyo
5.029 KB
-rw-r--r--
fix_paren.py
1.199 KB
-rw-r--r--
fix_paren.pyc
1.521 KB
-rw-r--r--
fix_paren.pyo
1.521 KB
-rw-r--r--
fix_print.py
2.798 KB
-rw-r--r--
fix_print.pyc
2.679 KB
-rw-r--r--
fix_print.pyo
2.584 KB
-rw-r--r--
fix_raise.py
2.865 KB
-rw-r--r--
fix_raise.pyc
2.453 KB
-rw-r--r--
fix_raise.pyo
2.453 KB
-rw-r--r--
fix_raw_input.py
0.444 KB
-rw-r--r--
fix_raw_input.pyc
0.928 KB
-rw-r--r--
fix_raw_input.pyo
0.928 KB
-rw-r--r--
fix_reduce.py
0.819 KB
-rw-r--r--
fix_reduce.pyc
1.246 KB
-rw-r--r--
fix_reduce.pyo
1.246 KB
-rw-r--r--
fix_renames.py
2.166 KB
-rw-r--r--
fix_renames.pyc
2.413 KB
-rw-r--r--
fix_renames.pyo
2.413 KB
-rw-r--r--
fix_repr.py
0.6 KB
-rw-r--r--
fix_repr.pyc
1.006 KB
-rw-r--r--
fix_repr.pyo
1.006 KB
-rw-r--r--
fix_set_literal.py
1.659 KB
-rw-r--r--
fix_set_literal.pyc
1.957 KB
-rw-r--r--
fix_set_literal.pyo
1.957 KB
-rw-r--r--
fix_standarderror.py
0.439 KB
-rw-r--r--
fix_standarderror.pyc
0.847 KB
-rw-r--r--
fix_standarderror.pyo
0.847 KB
-rw-r--r--
fix_sys_exc.py
1.015 KB
-rw-r--r--
fix_sys_exc.pyc
1.681 KB
-rw-r--r--
fix_sys_exc.pyo
1.681 KB
-rw-r--r--
fix_throw.py
1.549 KB
-rw-r--r--
fix_throw.pyc
1.963 KB
-rw-r--r--
fix_throw.pyo
1.963 KB
-rw-r--r--
fix_tuple_params.py
5.446 KB
-rw-r--r--
fix_tuple_params.pyc
5.33 KB
-rw-r--r--
fix_tuple_params.pyo
5.33 KB
-rw-r--r--
fix_types.py
1.767 KB
-rw-r--r--
fix_types.pyc
2.158 KB
-rw-r--r--
fix_types.pyo
2.158 KB
-rw-r--r--
fix_unicode.py
1.239 KB
-rw-r--r--
fix_unicode.pyc
1.691 KB
-rw-r--r--
fix_unicode.pyo
1.691 KB
-rw-r--r--
fix_urllib.py
8.188 KB
-rw-r--r--
fix_urllib.pyc
6.992 KB
-rw-r--r--
fix_urllib.pyo
6.992 KB
-rw-r--r--
fix_ws_comma.py
1.069 KB
-rw-r--r--
fix_ws_comma.pyc
1.363 KB
-rw-r--r--
fix_ws_comma.pyo
1.363 KB
-rw-r--r--
fix_xrange.py
2.636 KB
-rw-r--r--
fix_xrange.pyc
3.015 KB
-rw-r--r--
fix_xrange.pyo
3.015 KB
-rw-r--r--
fix_xreadlines.py
0.674 KB
-rw-r--r--
fix_xreadlines.pyc
1.139 KB
-rw-r--r--
fix_xreadlines.pyo
1.139 KB
-rw-r--r--
fix_zip.py
0.883 KB
-rw-r--r--
fix_zip.pyc
1.328 KB
-rw-r--r--
fix_zip.pyo
1.328 KB
-rw-r--r--