Home | History | Annotate | Download | only in collections

Lines Matching refs:maxsplit

1215     def replace(self, old, new, maxsplit=-1):
1220 return self.__class__(self.data.replace(old, new, maxsplit))
1233 def split(self, sep=None, maxsplit=-1):
1234 return self.data.split(sep, maxsplit)
1235 def rsplit(self, sep=None, maxsplit=-1):
1236 return self.data.rsplit(sep, maxsplit)