Lines Matching refs:ustr
4 from collections import UserString as ustr unknown
23 self.items = [ustr(c) for c in ('a', 'b', 'c')]
24 self.items2 = [ustr(c) for c in ('x', 'y', 'z')]
25 self.ab_items = [ustr(c) for c in 'ab']
26 self.abcde_items = [ustr(c) for c in 'abcde']
27 self.def_items = [ustr(c) for c in 'def']
31 self.letters = [ustr(c) for c in string.ascii_letters]
34 self.obj = ustr('F')
63 self.assertNotIn(ustr('F'), self.fs)
213 x = ustr('Q')
227 x = ustr('a')
234 a, q = ustr('a'), ustr('Q')
349 items = [ustr(c) for c in ('a', 'b', 'c')]
364 items = [ustr(c) for c in string.ascii_letters]
371 yielded = ustr(str(next(it)))
373 u = ustr(str(items.pop()))