Home
last modified time | relevance | path

Searched refs:splitfields (Results 1 – 12 of 12) sorted by relevance

/external/python/cpython2/Demo/tkinter/guido/
Dkill.py5 from string import splitfields
35 list = splitfields(s, '\n')
Dsvkill.py10 from string import splitfields
50 list = splitfields(s, '\n')
/external/python/cpython2/Demo/threads/
Dsquasher.py46 for line in string.splitfields(text, '\n'):
/external/python/cpython2/Demo/sockets/
Dftp.py93 hbytes = string.splitfields(hostaddr, '.')
Dgopher.py76 parts = string.splitfields(line[1:], TAB)
/external/python/cpython2/Demo/pdist/
Dcvslib.py77 words = string.splitfields(line, '/')
331 [hh, mm, ss] = map(string.atoi, string.splitfields(words[3], ':'))
/external/python/cpython2/Lib/
Dstringold.py116 splitfields = split variable
Dstring.py295 splitfields = split variable
/external/tensorflow/tensorflow/tools/ci_build/
Dpylintrc314 …ing.rindex,string.count,string.lower,string.split,string.rsplit,string.splitfields,string.join,str…
/external/python/cpython2/Doc/library/
Dstring.rst945 .. function:: splitfields(s[, sep[, maxsplit]])
948 was only used with one argument, while :func:`splitfields` was only used with
/external/python/cpython2/Misc/
DHISTORY12443 - 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/
DHISTORY29822 - 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