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
Alex Willmer edited this page Feb 12, 2026
·
2 revisions
The following is a proposed specification for how a controller (mitogen.master.ModuleResponder) decides whether to serve a Python module requested by a target (mitogen.core.Importer) or deny the request.
fullname
Fully qualified name of a Python module. E.g. foo.bar.baz.
ancestor
A fullname that is a parent, grandparent, etc. of another fullname.
E.g.
Glob style expression. A fullname matches if it directly matches, or it is
an ancester of a fullname that would directly match. The ancestor behaviour
is intended to match behaviour of Python import (import foo.bar.baz
implicitly imports foo, and foo.bar).
E.g.