Home
last modified time | relevance | path

Searched refs:context_depth (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Lib/idlelib/
DCodeContext.py28 context_depth = idleConf.GetOption("extensions", "CodeContext", variable in CodeContext
73 text="\n" * (self.context_depth - 1),
161 context_strings = [""] * max(0, self.context_depth - len(self.info))
163 context_strings += [x[2] for x in self.info[-self.context_depth:]]
/external/python/cpython3/Lib/idlelib/
Dcodecontext.py30 context_depth = idleConf.GetOption("extensions", "CodeContext", variable in CodeContext
75 text="\n" * (self.context_depth - 1),
163 context_strings = [""] * max(0, self.context_depth - len(self.info))
165 context_strings += [x[2] for x in self.info[-self.context_depth:]]