new(name, data=b'', **kwargs) - Return a new hashing object using the named algorithm; optionally initialized with data (which must be a bytes-like object).
(name, *args, **kwargs)
| 160 | |
| 161 | |
| 162 | def __py_new(name, *args, **kwargs): |
| 163 | """new(name, data=b'', **kwargs) - Return a new hashing object using the |
| 164 | named algorithm; optionally initialized with data (which must be |
| 165 | a bytes-like object). |
| 166 | """ |
| 167 | return __get_builtin_constructor(name)(*args, **kwargs) |
| 168 | |
| 169 | |
| 170 | def __hash_new(name, *args, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…