Home | History | Annotate | Download | only in test

Lines Matching refs:UserString

2 # UserString is a wrapper around the native builtin string type.
3 # UserString instances should behave similar to builtin string objects.
7 from UserString import UserString, MutableString
17 type2test = UserString
19 # Overwrite the three testing methods, because UserString
20 # can't cope with arguments propagated to UserString
25 # we don't fix the arguments, because UserString can't cope with it
34 # we don't fix the arguments, because UserString can't cope with it
43 # we don't fix the arguments, because UserString can't cope with it
79 s[1:-1] = UserString("a")
117 self.assertIsInstance(s2, UserString)
123 s += UserString("baz")