You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A core tenet of this package is equivalence--for various operations--between dot notation / attribute-style syntax and key / __getitem__ syntax. Some testing to this effect is already in place, but it should be more thorough, both for automated assurance of full functionality, and as a sort of in-code specification of the package's capabilities. Furthermore, building around this tenet emphasizes its centrality to the package's purpose.
Membership (in, hasattr)
Fetch ([], ., getattr, get)
Set (., [], update, setdefault, setattr)
The text was updated successfully, but these errors were encountered:
A core tenet of this package is equivalence--for various operations--between dot notation / attribute-style syntax and key /
__getitem__
syntax. Some testing to this effect is already in place, but it should be more thorough, both for automated assurance of full functionality, and as a sort of in-code specification of the package's capabilities. Furthermore, building around this tenet emphasizes its centrality to the package's purpose.in
,hasattr
)[]
,.
,getattr
,get
).
,[]
,update
,setdefault
,setattr
)The text was updated successfully, but these errors were encountered: