Searched refs:splitfields (Results 1 – 12 of 12) sorted by relevance
/external/python/cpython2/Demo/tkinter/guido/ |
D | kill.py | 5 from string import splitfields 35 list = splitfields(s, '\n')
|
D | svkill.py | 10 from string import splitfields 50 list = splitfields(s, '\n')
|
/external/python/cpython2/Demo/threads/ |
D | squasher.py | 46 for line in string.splitfields(text, '\n'):
|
/external/python/cpython2/Demo/sockets/ |
D | ftp.py | 93 hbytes = string.splitfields(hostaddr, '.')
|
D | gopher.py | 76 parts = string.splitfields(line[1:], TAB)
|
/external/python/cpython2/Demo/pdist/ |
D | cvslib.py | 77 words = string.splitfields(line, '/') 331 [hh, mm, ss] = map(string.atoi, string.splitfields(words[3], ':'))
|
/external/python/cpython2/Lib/ |
D | stringold.py | 116 splitfields = split variable
|
D | string.py | 295 splitfields = split variable
|
/external/tensorflow/tensorflow/tools/ci_build/ |
D | pylintrc | 314 …ing.rindex,string.count,string.lower,string.split,string.rsplit,string.splitfields,string.join,str…
|
/external/python/cpython2/Doc/library/ |
D | string.rst | 945 .. function:: splitfields(s[, sep[, maxsplit]]) 948 was only used with one argument, while :func:`splitfields` was only used with
|
/external/python/cpython2/Misc/ |
D | HISTORY | 12443 - Fixed handling of maxsplit in string.splitfields(). 14619 splitfields(s, sep, n) returns a list of at most n+1 elements). (Since 14620 1.3, splitfields(s, None) is totally equivalent to split(s).) 15029 The "string.split()" and "string.splitfields()" functions are now the 16025 * Some serious memory leaks in strop.split() and strop.splitfields(). 16623 The definition of what string.splitfields(anything, '') should return
|
/external/python/cpython3/Misc/ |
D | HISTORY | 29822 - Fixed handling of maxsplit in string.splitfields(). 31998 splitfields(s, sep, n) returns a list of at most n+1 elements). (Since 31999 1.3, splitfields(s, None) is totally equivalent to split(s).) 32408 The "string.split()" and "string.splitfields()" functions are now the 33404 * Some serious memory leaks in strop.split() and strop.splitfields(). 34002 The definition of what string.splitfields(anything, '') should return
|