Used by pickle protocol 4, instead of __newobj__ to allow classes with keyword-only arguments to be pickled correctly.
(cls, args, kwargs)
| 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 |
| 108 | keyword-only arguments to be pickled correctly. |
| 109 | """ |
| 110 | return cls.__new__(cls, *args, **kwargs) |
| 111 | |
| 112 | def _slotnames(cls): |
| 113 | """Return a list of slot names for a given class. |
nothing calls this directly
no test coverage detected
searching dependent graphs…