We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b316659 commit a44387cCopy full SHA for a44387c
mkl_fft/_scipy_fft_backend.py
@@ -49,15 +49,15 @@
49
50
def __ua_function__(method, args, kwargs):
51
"""Fetch registered UA function."""
52
- fn = _implemented.get(method, None)
+ fn = __implemented.get(method, None)
53
if fn is None:
54
return NotImplemented
55
return fn(*args, **kwargs)
56
57
def _implements(scipy_func):
58
"""Decorator adds function to the dictionary of implemented UA functions"""
59
def inner(func):
60
- _implemented[scipy_func] = func
+ __implemented[scipy_func] = func
61
return func
62
63
return inner
0 commit comments