Searched refs:__UNDEF__ (Results 1 – 2 of 2) sorted by relevance
/external/python/cpython2/Lib/ |
D | cgitb.py | 46 __UNDEF__ = [] # a special sentinel object variable 79 return None, __UNDEF__ 83 vars, lasttoken, parent, prefix, value = [], None, None, '', __UNDEF__ 88 if parent is not __UNDEF__: 89 value = getattr(parent, token, __UNDEF__) 157 if value is not __UNDEF__: 235 if value is not __UNDEF__:
|
/external/python/cpython3/Lib/ |
D | cgitb.py | 45 __UNDEF__ = [] # a special sentinel object variable 78 return None, __UNDEF__ 82 vars, lasttoken, parent, prefix, value = [], None, None, '', __UNDEF__ 87 if parent is not __UNDEF__: 88 value = getattr(parent, token, __UNDEF__) 156 if value is not __UNDEF__: 233 if value is not __UNDEF__:
|