OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:import_from
(Results
1 - 25
of
31
) sorted by null
1
2
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_future.py
14
PATTERN = """
import_from
< 'from' module_name="__future__" 'import' any >"""
fix_import.py
42
import_from
< 'from' imp=any 'import' ['('] any [')'] >
56
if node.type == syms.
import_from
:
fix_itertools_imports.py
11
import_from
< 'from' 'itertools' 'import' imports=any >
fix_renames.py
33
import_from
< 'from' module_name=%r 'import'
fix_urllib.py
58
yield """
import_from
< 'from' mod_member=%r 'import'
62
yield """
import_from
< 'from' module_star=%r 'import' star='*' >
fix_imports.py
72
yield """
import_from
< 'from' (%s) 'import' ['(']
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/fixes/
fix_future.py
14
PATTERN = """
import_from
< 'from' module_name="__future__" 'import' any >"""
fix_import.py
42
import_from
< 'from' imp=any 'import' ['('] any [')'] >
56
if node.type == syms.
import_from
:
fix_itertools_imports.py
11
import_from
< 'from' 'itertools' 'import' imports=any >
fix_renames.py
33
import_from
< 'from' module_name=%r 'import'
fix_urllib.py
58
yield """
import_from
< 'from' mod_member=%r 'import'
62
yield """
import_from
< 'from' module_star=%r 'import' star='*' >
fix_imports.py
72
yield """
import_from
< 'from' (%s) 'import' ['(']
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
graminit.h
30
#define
import_from
283
macro
opcode.h
107
#define
IMPORT_FROM
109 /* Index in name list */
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
graminit.h
30
#define
import_from
283
macro
opcode.h
107
#define
IMPORT_FROM
109 /* Index in name list */
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
symbol.py
40
import_from
= 283
variable
opcode.py
147
name_op('
IMPORT_FROM
', 109) # Index in name list
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
symbol.py
40
import_from
= 283
variable
opcode.py
147
name_op('
IMPORT_FROM
', 109) # Index in name list
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/
Grammar.txt
72
import_stmt: import_name |
import_from
74
import_from
: ('from' ('.'* dotted_name | '.'+)
fixer_util.py
129
imp = Node(syms.
import_from
, children)
292
return node.type in (syms.import_name, syms.
import_from
)
413
elif node.type == syms.
import_from
:
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/
Grammar.txt
72
import_stmt: import_name |
import_from
74
import_from
: ('from' ('.'* dotted_name | '.'+)
fixer_util.py
129
imp = Node(syms.
import_from
, children)
292
return node.type in (syms.import_name, syms.
import_from
)
413
elif node.type == syms.
import_from
:
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/
transformer.py
445
# import_stmt: import_name |
import_from
454
def
import_from
(self, nodelist):
member in class:Transformer
455
#
import_from
: 'from' ('.'* dotted_name | '.') 'import' ('*' |
[
all
...]
Completed in 525 milliseconds
1
2