OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisobject
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
rlcompleter.py
137
thisobject
= eval(expr, self.namespace)
142
words = dir(
thisobject
)
146
if hasattr(
thisobject
, '__class__'):
148
words.extend(get_class_members(
thisobject
.__class__))
152
if word[:n] == attr and hasattr(
thisobject
, word):
153
val = getattr(
thisobject
, word)
/external/python/cpython2/Lib/
rlcompleter.py
136
thisobject
= eval(expr, self.namespace)
141
words = set(dir(
thisobject
))
144
if hasattr(
thisobject
, '__class__'):
146
words.update(get_class_members(
thisobject
.__class__))
152
val = getattr(
thisobject
, word)
/external/python/cpython3/Lib/
rlcompleter.py
148
thisobject
= eval(expr, self.namespace)
153
words = set(dir(
thisobject
))
156
if hasattr(
thisobject
, '__class__'):
158
words.update(get_class_members(
thisobject
.__class__))
173
val = getattr(
thisobject
, word)
Completed in 172 milliseconds