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)
| 142 | |
| 143 | |
| 144 | def __py_new(name, *args, **kwargs): |
| 145 | """new(name, data=b'', **kwargs) - Return a new hashing object using the |
| 146 | named algorithm; optionally initialized with data (which must be |
| 147 | a bytes-like object). |
| 148 | """ |
| 149 | return __get_builtin_constructor(name)(*args, **kwargs) |
| 150 | |
| 151 | |
| 152 | def __hash_new(name, *args, **kwargs): |
nothing calls this directly
no test coverage detected