(self, *args, **kwargs)
| 66 | ) |
| 67 | |
| 68 | def dict(self, *args, **kwargs): |
| 69 | # XXX: figure out len |
| 70 | return self._new_apply("dict", args, kwargs, o_len=None, pure=True) |
| 71 | |
| 72 | def int(self, arg): |
| 73 | return self._new_apply("int", [as_apply(arg)], {}, o_len=None, pure=True) |
nothing calls this directly
no test coverage detected