Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
apmorton committed Nov 24, 2023
1 parent fd3741b commit 16029cc
Show file tree
Hide file tree
Showing 8 changed files with 616 additions and 593 deletions.
6 changes: 3 additions & 3 deletions src/frozendict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
c_ext = True
del _frozendict
except ImportError:
from .core import *
from ._frozendictpy import *
c_ext = False

from .version import version as __version__
Expand Down Expand Up @@ -47,8 +47,8 @@ def default(self, obj):
if c_ext:
__all__ = (frozendict.__name__, )
else:
__all__ = core.__all__
del core
__all__ = _frozendictpy.__all__
del _frozendictpy

# TODO deprecated, to remove in future versions
FrozenOrderedDict = frozendict
Expand Down

0 comments on commit 16029cc

Please sign in to comment.