Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow for inheriting from proxies (fixes #80) #82

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/lazy_object_proxy/simple.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import operator
import sys

from .compat import string_types
from .compat import with_metaclass
Expand Down Expand Up @@ -257,3 +258,7 @@ def __reduce_ex__(self, protocol):
from .utils import __await__

__aiter__, __anext__, __await__, __aenter__, __aexit__ # noqa

if sys.hexversion >= 0x03070000:
def __mro_entries__(self, _):
return (self.__wrapped__,)
Loading