For each element in `self`, return a list of the lines in the element, breaking at line boundaries. See Also -------- char.splitlines
(self, keepends=None)
| 1094 | return split(self, sep, maxsplit) |
| 1095 | |
| 1096 | def splitlines(self, keepends=None): |
| 1097 | """ |
| 1098 | For each element in `self`, return a list of the lines in the |
| 1099 | element, breaking at line boundaries. |
| 1100 | |
| 1101 | See Also |
| 1102 | -------- |
| 1103 | char.splitlines |
| 1104 | |
| 1105 | """ |
| 1106 | return splitlines(self, keepends) |
| 1107 | |
| 1108 | def startswith(self, prefix, start=0, end=None): |
| 1109 | """ |
no outgoing calls