Skip to content

Commit 87cf4a6

Browse files
authored
1 parent aa46e84 commit 87cf4a6

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/lazy_object_proxy/simple.py

+5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import operator
2+
import sys
23

34
from .compat import string_types
45
from .compat import with_metaclass
@@ -257,3 +258,7 @@ def __reduce_ex__(self, protocol):
257258
from .utils import __await__
258259

259260
__aiter__, __anext__, __await__, __aenter__, __aexit__ # noqa
261+
262+
if sys.hexversion >= 0x03070000:
263+
def __mro_entries__(self, _):
264+
return (self.__wrapped__,)

0 commit comments

Comments
 (0)