Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/dabeaz/python-cookbook
/ RDict
Class
RDict
src/8/extending_classes_with_mixins/example2.py:13–14 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
11
# Example
12
13
class
RDict(RestrictKeysMixin, dict):
14
pass
15
16
d = RDict(_restrict_key_type=str)
17
e = RDict([(
'name'
,
'Dave'
), (
'n'
,37)], _restrict_key_type=str)
Callers
1
example2.py
File · 0.85
Calls
no outgoing calls
Tested by
no test coverage detected