Searched defs:keepends (Results 1 – 9 of 9) sorted by relevance
/third_party/python/Lib/ |
D | codecs.py | 531 def readline(self, size=None, keepends=True): argument 606 def readlines(self, sizehint=None, keepends=True): argument
|
/third_party/python/Objects/clinic/ |
D | bytesobject.c.h | 694 int keepends = 0; in bytes_splitlines() local
|
D | bytearrayobject.c.h | 934 int keepends = 0; in bytearray_splitlines() local
|
D | unicodeobject.c.h | 1040 int keepends = 0; in unicode_splitlines() local
|
/third_party/python/Objects/ |
D | bytearrayobject.c | 2045 bytearray_splitlines_impl(PyByteArrayObject *self, int keepends) in bytearray_splitlines_impl()
|
D | bytesobject.c | 2325 bytes_splitlines_impl(PyBytesObject *self, int keepends) in bytes_splitlines_impl()
|
D | unicodeobject.c | 10652 PyUnicode_Splitlines(PyObject *string, int keepends) in PyUnicode_Splitlines() 13696 unicode_splitlines_impl(PyObject *self, int keepends) in unicode_splitlines_impl()
|
/third_party/python/Lib/test/ |
D | test_codecs.py | 157 def readalllines(input, keepends=True, size=None): argument
|
/third_party/python/Lib/collections/ |
D | __init__.py | 1530 def splitlines(self, keepends=False): argument
|