(cls, *args)
| 101 | # Helper for __reduce_ex__ protocol 2 |
| 102 | |
| 103 | def __newobj__(cls, *args): |
| 104 | return cls.__new__(cls, *args) |
| 105 | |
| 106 | def __newobj_ex__(cls, args, kwargs): |
| 107 | """Used by pickle protocol 4, instead of __newobj__ to allow classes with |
nothing calls this directly
no test coverage detected
searching dependent graphs…