diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-01 13:32:15 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2016-05-01 13:32:15 +0300 |
commit | a9ed42b3b415d49978ac90e133d23c4ab26b5241 (patch) | |
tree | b6a027f44fb2241df6601077f6c10867d5a5efef | |
parent | 6b6acc5b5d93847fecf908bcb8385196e411dfc9 (diff) |
docs/sys: Document sys.modules.
-rw-r--r-- | docs/library/sys.rst | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/library/sys.rst b/docs/library/sys.rst index b3e52c40c..ee2afed62 100644 --- a/docs/library/sys.rst +++ b/docs/library/sys.rst @@ -33,6 +33,11 @@ Constants the byte order of the system ("little" or "big") +.. data:: modules + + Dictionary of loaded modules. On some ports, it may not include builtin + modules. + .. data:: path a mutable list of directories to search for imported modules |