Skip to content

Commit

Permalink
Turns out the simple implementation is faster on Python 3 so default …
Browse files Browse the repository at this point in the history
…to that when falling back to pure python.
  • Loading branch information
ionelmc committed Jan 4, 2023
1 parent 8f6f9d3 commit 2595906
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lazy_object_proxy/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from .cext import Proxy
from .cext import identity
except ImportError:
from .slots import Proxy
from .simple import Proxy
else:
copyreg.constructor(identity)

Expand Down

0 comments on commit 2595906

Please sign in to comment.