/external/python/cpython2/Lib/test/ |
D | test_difflib.py | 163 full = i.make_file(f1a,t1a,'from','to',context=False,numlines=5) 171 i.make_table(f1a,t1a,'from','to',context=True,numlines=6), 173 i.make_table(f1a,t1a,'from','to',context=True,numlines=0), 187 k.make_table(f3.splitlines(),t3.splitlines(),context=True,numlines=0),
|
/external/python/cpython2/Lib/distutils/tests/ |
D | test_config_cmd.py | 33 numlines = len(f.readlines()) 38 self.assertEqual(len(self._logs), numlines+1)
|
/external/python/cpython3/Lib/distutils/tests/ |
D | test_config_cmd.py | 33 numlines = len(f.readlines()) 38 self.assertEqual(len(self._logs), numlines+1)
|
/external/selinux/libselinux/src/ |
D | audit2why.c | 317 int numlines; in analyze() local 331 numlines = PyList_Size(listObj); in analyze() 334 if (numlines < 0) return NULL; /* Not a list */ in analyze() 356 for (i = 0; i < numlines; i++){ in analyze()
|
/external/python/cpython2/Lib/ |
D | difflib.py | 1710 numlines=5): argument 1731 context=context,numlines=numlines)) 1894 def _convert_flags(self,fromlist,tolist,flaglist,context,numlines): argument 1913 i = max([0,i-numlines]) 1942 numlines=5): argument 1969 context_lines = numlines 1984 fromlist,tolist,flaglist,context,numlines)
|
/external/python/cpython3/Lib/ |
D | difflib.py | 1746 context=False, numlines=5, *, charset='utf-8'): argument 1768 context=context, numlines=numlines), 1933 def _convert_flags(self,fromlist,tolist,flaglist,context,numlines): argument 1952 i = max([0,i-numlines]) 1981 numlines=5): argument 2008 context_lines = numlines 2023 fromlist,tolist,flaglist,context,numlines)
|
/external/python/cpython3/Lib/test/ |
D | test_difflib.py | 208 full = i.make_file(f1a,t1a,'from','to',context=False,numlines=5) 216 i.make_table(f1a,t1a,'from','to',context=True,numlines=6), 218 i.make_table(f1a,t1a,'from','to',context=True,numlines=0), 232 k.make_table(f3.splitlines(),t3.splitlines(),context=True,numlines=0),
|
/external/python/cpython3/Tools/scripts/ |
D | diff.py | 53 …diff = difflib.HtmlDiff().make_file(fromlines,tolines,fromfile,tofile,context=options.c,numlines=n)
|
/external/python/cpython2/Tools/scripts/ |
D | diff.py | 45 …diff = difflib.HtmlDiff().make_file(fromlines,tolines,fromfile,tofile,context=options.c,numlines=n)
|
/external/python/cpython2/Doc/library/ |
D | difflib.rst | 104 .. function:: make_file(fromlines, tolines [, fromdesc][, todesc][, context][, numlines]) 113 *context* and *numlines* are both optional keyword arguments. Set *context* to 115 ``False`` to show the full files. *numlines* defaults to ``5``. When *context* 116 is ``True`` *numlines* controls the number of context lines which surround the 117 difference highlights. When *context* is ``False`` *numlines* controls the 124 .. function:: make_table(fromlines, tolines [, fromdesc][, todesc][, context][, numlines]) 773 numlines=n)
|
/external/python/cpython2/Lib/idlelib/ |
D | config-extensions.def | 60 numlines=3
|
/external/python/cpython3/Doc/library/ |
D | difflib.rst | 112 numlines=5, *, charset='utf-8') 121 *context* and *numlines* are both optional keyword arguments. Set *context* to 123 ``False`` to show the full files. *numlines* defaults to ``5``. When *context* 124 is ``True`` *numlines* controls the number of context lines which surround the 125 difference highlights. When *context* is ``False`` *numlines* controls the 139 .. method:: make_table(fromlines, tolines, fromdesc='', todesc='', context=False, numlines=5)
|
/external/python/cpython3/Lib/idlelib/ |
D | NEWS.txt | 417 the Code Contex had numlines lines, usually with some blank.) The use 419 with user settings of the old option, 'numlines' (default 3).
|