HomeSort by relevance Sort by last modified time
    Searched refs:fix_imports (Results 1 - 12 of 12) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/fixes/
fix_imports2.py 2 fix_imports."""
3 from . import fix_imports
12 class FixImports2(fix_imports.FixImports):
fix_urllib.py 2 This is rather similar to fix_imports, but because of the more
8 from lib2to3.fixes.fix_imports import alternates, FixImports
  /external/python/cpython2/Lib/lib2to3/fixes/
fix_imports2.py 2 fix_imports."""
3 from . import fix_imports
12 class FixImports2(fix_imports.FixImports):
fix_urllib.py 2 This is rather similar to fix_imports, but because of the more
8 from lib2to3.fixes.fix_imports import alternates, FixImports
  /external/python/cpython3/Lib/lib2to3/fixes/
fix_imports2.py 2 fix_imports."""
3 from . import fix_imports
12 class FixImports2(fix_imports.FixImports):
fix_urllib.py 2 This is rather similar to fix_imports, but because of the more
8 from lib2to3.fixes.fix_imports import alternates, FixImports
  /external/python/cpython3/Modules/clinic/
_pickle.c.h 66 "Pickler(file, protocol=None, fix_imports=True)\n"
84 "If *fix_imports* is True and protocol is less than 3, pickle will try\n"
90 PyObject *protocol, int fix_imports);
96 static const char * const _keywords[] = {"file", "protocol", "fix_imports", NULL};
100 int fix_imports = 1; local
103 &file, &protocol, &fix_imports)) {
106 return_value = _pickle_Pickler___init___impl((PicklerObject *)self, file, protocol, fix_imports);
256 "Unpickler(file, *, fix_imports=True, encoding=\'ASCII\', errors=\'strict\')\n"
271 "Optional keyword arguments are *fix_imports*, *encoding* and *errors*,\n"
273 "generated by Python 2. If *fix_imports* is True, pickle will try to\n
292 int fix_imports = 1; local
402 int fix_imports = 1; local
447 int fix_imports = 1; local
502 int fix_imports = 1; local
550 int fix_imports = 1; local
    [all...]
  /external/python/cpython3/Lib/
pickle.py 374 def __init__(self, file, protocol=None, *, fix_imports=True):
392 If *fix_imports* is True and *protocol* is less than 3, pickle
414 self.fix_imports = fix_imports and protocol < 3
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 635 int fix_imports; /* Indicate whether Pickler should fix member in struct:PicklerObject
676 int fix_imports; /* Indicate whether Unpickler should fix member in struct:UnpicklerObject
3226 fix_imports(PyObject **module_name, PyObject **global_name) function
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/
test_fixers.py     [all...]
  /external/python/cpython2/Lib/lib2to3/tests/
test_fixers.py     [all...]
  /external/python/cpython3/Lib/lib2to3/tests/
test_fixers.py     [all...]

Completed in 279 milliseconds