OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:thisobject
(Results
1 - 2
of
2
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
rlcompleter.py
133
thisobject
= eval(expr, self.namespace)
138
words = dir(
thisobject
)
142
if hasattr(
thisobject
, '__class__'):
144
words.extend(get_class_members(
thisobject
.__class__))
148
if word[:n] == attr and hasattr(
thisobject
, word):
149
val = getattr(
thisobject
, word)
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/
rlcompleter.py
133
thisobject
= eval(expr, self.namespace)
138
words = dir(
thisobject
)
142
if hasattr(
thisobject
, '__class__'):
144
words.extend(get_class_members(
thisobject
.__class__))
148
if word[:n] == attr and hasattr(
thisobject
, word):
149
val = getattr(
thisobject
, word)
Completed in 531 milliseconds