On this page

Scopes that nest๏ƒ

Beginner. Child scopes, no configuration.

root = book.conjure()
child = root.create_lesser_conduit()

assert root.meld("Config") is child.meld("Config")      # shared
assert root.meld("Session") is not child.meld("Session") # per-scope

Runnable examples๏ƒ

All beginner examples ยท Level contents ยท Full contents

Canonical page source