Searched refs:getcookedpat (Results 1 – 4 of 4) sorted by relevance
/external/python/cpython2/Lib/idlelib/idle_test/ |
D | test_searchengine.py | 152 Equal(engine.getcookedpat(), '') 154 Equal(engine.getcookedpat(), 'hello') 156 Equal(engine.getcookedpat(), r'\bhello\b') 160 Equal(engine.getcookedpat(), r'\\s') 162 Equal(engine.getcookedpat(), '\s')
|
/external/python/cpython3/Lib/idlelib/idle_test/ |
D | test_searchengine.py | 153 Equal(engine.getcookedpat(), '') 155 Equal(engine.getcookedpat(), 'hello') 157 Equal(engine.getcookedpat(), r'\bhello\b') 161 Equal(engine.getcookedpat(), r'\\s') 163 Equal(engine.getcookedpat(), r'\s')
|
/external/python/cpython2/Lib/idlelib/ |
D | SearchEngine.py | 65 def getcookedpat(self): member in SearchEngine 79 pat = self.getcookedpat()
|
/external/python/cpython3/Lib/idlelib/ |
D | searchengine.py | 67 def getcookedpat(self): member in SearchEngine 81 pat = self.getcookedpat()
|