Skip to content

Commit

Permalink
added init and lookup
Browse files Browse the repository at this point in the history
  • Loading branch information
dpdani committed Oct 26, 2023
1 parent 663b852 commit 27ab7a3
Show file tree
Hide file tree
Showing 7 changed files with 778 additions and 49 deletions.
2 changes: 2 additions & 0 deletions src/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ project(cereggii)

set(PY_BUILD_CMAKE_MODULE_NAME "cereggii")

include_directories("include/")

# Find the Python development files
set(python_base "$ENV{HOME}/.pyenv/versions/nogil-3.9.10-1")
message("CI=" $ENV{CI})
Expand Down
3 changes: 2 additions & 1 deletion src/cereggii/atomic_dict/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
from cereggii import _atomic_dict
except ImportError: # building sdist (without compiled modules)
class AtomicDict:
pass
def __init__(self):
print("dummy")
else:
AtomicDict = _atomic_dict.AtomicDict

Expand Down
Loading

0 comments on commit 27ab7a3

Please sign in to comment.