HomeSort by relevance Sort by last modified time
    Searched refs:linecache (Results 51 - 75 of 120) sorted by null

1 23 4 5

  /external/python/cpython2/Lib/idlelib/
run.py 2 import linecache
171 import linecache
172 linecache.checkcache()
216 line = rpchandler.remotecall('linecache', 'getline',
PyShell.py 15 import linecache
61 line = linecache.getline(filename, lineno)
103 orig_checkcache=linecache.checkcache):
104 """Extend linecache.checkcache to preserve the <pyshell#...> entries
106 Rather than repeating the linecache code, patch it to save the
107 <pyshell#...> entries, call the original linecache.checkcache()
113 cache = linecache.cache
121 # Patch linecache.checkcache():
122 linecache.checkcache = extended_linecache_checkcache
469 self.rpcclt.register("linecache", linecache
    [all...]
  /external/python/cpython2/Lib/
warnings.py 6 import linecache
51 line = linecache.getline(filename, lineno) if line is None else line
271 # Prime the linecache for formatting, in case the
273 linecache.getlines(filename, module_globals)
inspect.py 40 import linecache
455 # or it is in the linecache
456 if filename in linecache.cache:
533 lines = linecache.getlines(file, module.__dict__)
535 lines = linecache.getlines(file)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
cgitb.py 26 import linecache
135 try: return linecache.getline(file, lnum[0])
219 try: return linecache.getline(file, lnum[0])
warnings.py 6 import linecache
39 line = linecache.getline(filename, lineno) if line is None else line
249 # Prime the linecache for formatting, in case the
251 linecache.getlines(filename, module_globals)
  /prebuilts/gdb/linux-x86/lib/python2.7/
cgitb.py 26 import linecache
135 try: return linecache.getline(file, lnum[0])
219 try: return linecache.getline(file, lnum[0])
warnings.py 6 import linecache
39 line = linecache.getline(filename, lineno) if line is None else line
249 # Prime the linecache for formatting, in case the
251 linecache.getlines(filename, module_globals)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
cgitb.py 26 import linecache
135 try: return linecache.getline(file, lnum[0])
219 try: return linecache.getline(file, lnum[0])
warnings.py 6 import linecache
39 line = linecache.getline(filename, lineno) if line is None else line
249 # Prime the linecache for formatting, in case the
251 linecache.getlines(filename, module_globals)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
cgitb.py 26 import linecache
135 try: return linecache.getline(file, lnum[0])
219 try: return linecache.getline(file, lnum[0])
warnings.py 6 import linecache
39 line = linecache.getline(filename, lineno) if line is None else line
249 # Prime the linecache for formatting, in case the
251 linecache.getlines(filename, module_globals)
  /external/python/cpython2/Lib/test/
test_inspect.py 6 import linecache
299 linecache.cache[co.co_filename] = (1, None, "None", co.co_filename)
317 '''doctest monkeypatches linecache to enable inspection'''
319 getlines = linecache.getlines
325 linecache.getlines = monkey
331 linecache.getlines = getlines
421 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_inspect.py 6 import linecache
281 linecache.cache[co.co_filename] = (1, None, "None", co.co_filename)
299 '''doctest monkeypatches linecache to enable inspection'''
301 getlines = linecache.getlines
307 linecache.getlines = monkey
313 linecache.getlines = getlines
403 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename)
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_inspect.py 6 import linecache
281 linecache.cache[co.co_filename] = (1, None, "None", co.co_filename)
299 '''doctest monkeypatches linecache to enable inspection'''
301 getlines = linecache.getlines
307 linecache.getlines = monkey
313 linecache.getlines = getlines
403 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_inspect.py 6 import linecache
281 linecache.cache[co.co_filename] = (1, None, "None", co.co_filename)
299 '''doctest monkeypatches linecache to enable inspection'''
301 getlines = linecache.getlines
307 linecache.getlines = monkey
313 linecache.getlines = getlines
403 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_inspect.py 6 import linecache
281 linecache.cache[co.co_filename] = (1, None, "None", co.co_filename)
299 '''doctest monkeypatches linecache to enable inspection'''
301 getlines = linecache.getlines
307 linecache.getlines = monkey
313 linecache.getlines = getlines
403 linecache.cache[co.co_filename] = (1, None, lines, co.co_filename)
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/idlelib/
PyShell.py 16 import linecache
75 line = linecache.getline(filename, lineno)
84 orig_checkcache=linecache.checkcache):
85 """Extend linecache.checkcache to preserve the <pyshell#...> entries
87 Rather than repeating the linecache code, patch it to save the
88 <pyshell#...> entries, call the original linecache.checkcache()
94 cache = linecache.cache
102 # Patch linecache.checkcache():
103 linecache.checkcache = extended_linecache_checkcache
441 self.rpcclt.register("linecache", linecache
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/idlelib/
PyShell.py 16 import linecache
75 line = linecache.getline(filename, lineno)
84 orig_checkcache=linecache.checkcache):
85 """Extend linecache.checkcache to preserve the <pyshell#...> entries
87 Rather than repeating the linecache code, patch it to save the
88 <pyshell#...> entries, call the original linecache.checkcache()
94 cache = linecache.cache
102 # Patch linecache.checkcache():
103 linecache.checkcache = extended_linecache_checkcache
441 self.rpcclt.register("linecache", linecache
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 16 import linecache
75 line = linecache.getline(filename, lineno)
84 orig_checkcache=linecache.checkcache):
85 """Extend linecache.checkcache to preserve the <pyshell#...> entries
87 Rather than repeating the linecache code, patch it to save the
88 <pyshell#...> entries, call the original linecache.checkcache()
94 cache = linecache.cache
102 # Patch linecache.checkcache():
103 linecache.checkcache = extended_linecache_checkcache
441 self.rpcclt.register("linecache", linecache
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/
PyShell.py 16 import linecache
75 line = linecache.getline(filename, lineno)
84 orig_checkcache=linecache.checkcache):
85 """Extend linecache.checkcache to preserve the <pyshell#...> entries
87 Rather than repeating the linecache code, patch it to save the
88 <pyshell#...> entries, call the original linecache.checkcache()
94 cache = linecache.cache
102 # Patch linecache.checkcache():
103 linecache.checkcache = extended_linecache_checkcache
441 self.rpcclt.register("linecache", linecache
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
inspect.py 40 import linecache
456 # or it is in the linecache
457 if filename in linecache.cache:
534 lines = linecache.getlines(file, module.__dict__)
536 lines = linecache.getlines(file)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
inspect.py 40 import linecache
458 # or it is in the linecache
459 if filename in linecache.cache:
532 lines = linecache.getlines(file, module.__dict__)
534 lines = linecache.getlines(file)
    [all...]
trace.py 51 import linecache
332 source = linecache.getlines(filename)
633 linecache.getline(filename, lineno)),
646 linecache.getline(filename, lineno)),
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_warnings.py 2 import linecache
529 expected_line = ' ' + linecache.getline(path, line).strip() + '\n'
544 file_line = linecache.getline(file_name, line_num).strip()
560 expected_file_line = linecache.getline(file_name, line_num).strip()

Completed in 831 milliseconds

1 23 4 5