FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pythonVSCode/pythonFiles/rope/base/pynames.py at master · modulexcite/pythonVSCode · GitHub
modulexcite
/
pythonVSCode
Public
forked from
DonJayamanne/pythonVSCode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pythonVSCode
/
pythonFiles
/
rope
/
base
/
pynames.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
201 lines (147 loc) · 5.79 KB
Breadcrumbs
pythonVSCode
/
pythonFiles
/
rope
/
base
/
pynames.py
Copy path
File metadata and controls
201 lines (147 loc) · 5.79 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
import
rope
.
base
.
pyobjects
from
rope
.
base
import
exceptions
,
utils
class
PyName
(
object
):
"""References to `PyObject`\s inside python programs"""
def
get_object
(
self
):
"""Return the `PyObject` object referenced by this `PyName`"""
def
get_definition_location
(
self
):
"""Return a (module, lineno) tuple"""
class
DefinedName
(
PyName
):
def
__init__
(
self
,
pyobject
):
self
.
pyobject
=
pyobject
def
get_object
(
self
):
return
self
.
pyobject
def
get_definition_location
(
self
):
return
(
self
.
pyobject
.
get_module
(),
self
.
pyobject
.
get_ast
().
lineno
)
class
AssignedName
(
PyName
):
"""Only a placeholder"""
class
UnboundName
(
PyName
):
def
__init__
(
self
,
pyobject
=
None
):
self
.
pyobject
=
pyobject
if
self
.
pyobject
is
None
:
self
.
pyobject
=
rope
.
base
.
pyobjects
.
get_unknown
()
def
get_object
(
self
):
return
self
.
pyobject
def
get_definition_location
(
self
):
return
(
None
,
None
)
class
AssignmentValue
(
object
):
"""An assigned expression"""
def
__init__
(
self
,
ast_node
,
levels
=
None
,
evaluation
=
''
,
assign_type
=
False
):
"""The `level` is `None` for simple assignments and is
a list of numbers for tuple assignments for example in::
a, (b, c) = x
The levels for for `a` is ``[0]``, for `b` is ``[1, 0]`` and for
`c` is ``[1, 1]``.
"""
self
.
ast_node
=
ast_node
if
levels
is
None
:
self
.
levels
=
[]
else
:
self
.
levels
=
levels
self
.
evaluation
=
evaluation
self
.
assign_type
=
assign_type
def
get_lineno
(
self
):
return
self
.
ast_node
.
lineno
class
EvaluatedName
(
PyName
):
"""A name whose object will be evaluated later"""
def
__init__
(
self
,
callback
,
module
=
None
,
lineno
=
None
):
self
.
module
=
module
self
.
lineno
=
lineno
self
.
callback
=
callback
self
.
pyobject
=
_Inferred
(
callback
,
_get_concluded_data
(
module
))
def
get_object
(
self
):
return
self
.
pyobject
.
get
()
def
get_definition_location
(
self
):
return
(
self
.
module
,
self
.
lineno
)
def
invalidate
(
self
):
"""Forget the `PyObject` this `PyName` holds"""
self
.
pyobject
.
set
(
None
)
class
ParameterName
(
PyName
):
"""Only a placeholder"""
class
ImportedModule
(
PyName
):
def
__init__
(
self
,
importing_module
,
module_name
=
None
,
level
=
0
,
resource
=
None
):
self
.
importing_module
=
importing_module
self
.
module_name
=
module_name
self
.
level
=
level
self
.
resource
=
resource
self
.
pymodule
=
_get_concluded_data
(
self
.
importing_module
)
def
_current_folder
(
self
):
resource
=
self
.
importing_module
.
get_module
().
get_resource
()
if
resource
is
None
:
return
None
return
resource
.
parent
def
_get_pymodule
(
self
):
if
self
.
pymodule
.
get
()
is
None
:
pycore
=
self
.
importing_module
.
pycore
if
self
.
resource
is
not
None
:
self
.
pymodule
.
set
(
pycore
.
project
.
get_pymodule
(
self
.
resource
))
elif
self
.
module_name
is
not
None
:
try
:
if
self
.
level
==
0
:
pymodule
=
pycore
.
project
.
get_module
(
self
.
module_name
,
self
.
_current_folder
())
else
:
pymodule
=
pycore
.
project
.
get_relative_module
(
self
.
module_name
,
self
.
_current_folder
(),
self
.
level
)
self
.
pymodule
.
set
(
pymodule
)
except
exceptions
.
ModuleNotFoundError
:
pass
return
self
.
pymodule
.
get
()
def
get_object
(
self
):
if
self
.
_get_pymodule
()
is
None
:
return
rope
.
base
.
pyobjects
.
get_unknown
()
return
self
.
_get_pymodule
()
def
get_definition_location
(
self
):
pymodule
=
self
.
_get_pymodule
()
if
not
isinstance
(
pymodule
,
rope
.
base
.
pyobjects
.
PyDefinedObject
):
return
(
None
,
None
)
return
(
pymodule
.
get_module
(),
1
)
class
ImportedName
(
PyName
):
def
__init__
(
self
,
imported_module
,
imported_name
):
self
.
imported_module
=
imported_module
self
.
imported_name
=
imported_name
def
_get_imported_pyname
(
self
):
try
:
result
=
self
.
imported_module
.
get_object
()[
self
.
imported_name
]
if
result
!=
self
:
return
result
except
exceptions
.
AttributeNotFoundError
:
pass
return
UnboundName
()
@
utils
.
prevent_recursion
(
rope
.
base
.
pyobjects
.
get_unknown
)
def
get_object
(
self
):
return
self
.
_get_imported_pyname
().
get_object
()
@
utils
.
prevent_recursion
(
lambda
: (
None
,
None
))
def
get_definition_location
(
self
):
return
self
.
_get_imported_pyname
().
get_definition_location
()
def
_get_concluded_data
(
module
):
if
module
is
None
:
return
rope
.
base
.
pyobjects
.
_ConcludedData
()
return
module
.
_get_concluded_data
()
def
_circular_inference
():
raise
rope
.
base
.
pyobjects
.
IsBeingInferredError
(
'Circular Object Inference'
)
class
_Inferred
(
object
):
def
__init__
(
self
,
get_inferred
,
concluded
=
None
):
self
.
get_inferred
=
get_inferred
self
.
concluded
=
concluded
if
self
.
concluded
is
None
:
self
.
temp
=
None
@
utils
.
prevent_recursion
(
_circular_inference
)
def
get
(
self
,
*
args
,
**
kwds
):
if
self
.
concluded
is
None
or
self
.
concluded
.
get
()
is
None
:
self
.
set
(
self
.
get_inferred
(
*
args
,
**
kwds
))
if
self
.
_get
()
is
None
:
self
.
set
(
rope
.
base
.
pyobjects
.
get_unknown
())
return
self
.
_get
()
def
set
(
self
,
pyobject
):
if
self
.
concluded
is
not
None
:
self
.
concluded
.
set
(
pyobject
)
self
.
temp
=
pyobject
def
_get
(
self
):
if
self
.
concluded
is
not
None
:
return
self
.
concluded
.
get
()
return
self
.
temp
Back
|
FazBrowse Home
|
New Git URL