(self)
| 3249 | ) |
| 3250 | |
| 3251 | def test_discard_vargs(self): |
| 3252 | class Foo: |
| 3253 | def __init__(self, a, b, *args): |
| 3254 | self.a = a |
| 3255 | self.b = b |
| 3256 | self.c, self.d = args[0:2] |
| 3257 | |
| 3258 | eq_(util.generic_repr(Foo(1, 2, 3, 4)), "Foo(1, 2)") |
| 3259 | |
| 3260 | def test_discard_vargs_kwargs(self): |
| 3261 | class Foo: |