Skip to content

Commit 2595906

Browse files
committed
Turns out the simple implementation is faster on Python 3 so default to that when falling back to pure python.
1 parent 8f6f9d3 commit 2595906

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lazy_object_proxy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from .cext import Proxy
1212
from .cext import identity
1313
except ImportError:
14-
from .slots import Proxy
14+
from .simple import Proxy
1515
else:
1616
copyreg.constructor(identity)
1717

0 commit comments

Comments
 (0)