Home | History | Annotate | Download | only in test

Lines Matching refs:rpartition

1187             'this is the rpartition method', 'rpartition', 'ti')
1191 self.checkequal(('http', '://', 'www.python.org'), S, 'rpartition', '://')
1192 self.checkequal(('', '', 'http://www.python.org'), S, 'rpartition', '?')
1193 self.checkequal(('', 'http://', 'www.python.org'), S, 'rpartition', 'http://')
1194 self.checkequal(('http://www.python.', 'org', ''), S, 'rpartition', 'org')
1196 self.checkraises(ValueError, S, 'rpartition', '')
1197 self.checkraises(TypeError, S, 'rpartition', None)
1200 self.assertEqual('a/b/c'.rpartition(u'/'), ('a/b', '/', 'c'))