Lines Matching defs:ustr
5 from collections import UserString as ustr
30 self.items = [ustr(c) for c in ('a', 'b', 'c')]
31 self.items2 = [ustr(c) for c in ('x', 'y', 'z')]
32 self.ab_items = [ustr(c) for c in 'ab']
33 self.abcde_items = [ustr(c) for c in 'abcde']
34 self.def_items = [ustr(c) for c in 'def']
38 self.letters = [ustr(c) for c in string.ascii_letters]
41 self.obj = ustr('F')
70 self.assertNotIn(ustr('F'), self.fs)
220 x = ustr('Q')
234 x = ustr('a')
241 a, q = ustr('a'), ustr('Q')
356 items = [ustr(c) for c in ('a', 'b', 'c')]
371 items = [ustr(c) for c in string.ascii_letters]
378 yielded = ustr(str(next(it)))
380 u = ustr(str(items.pop()))