In preparation for relocating arbitrary Python expressions out of
the standard menu elements, provide a stub mudpy.menu module which
will house equivalent convenience functions and include an autodoc
section for it in the Sphinx API documentation template.
-.. Copyright (c) 2018 mudpy authors. Permission to use, copy,
+.. Copyright (c) 2018-2019 mudpy authors. Permission to use, copy,
modify, and distribute this software is granted under terms
provided in the LICENSE file distributed with this software.
:undoc-members:
:show-inheritance:
+mudpy\.menu module
+------------------
+
+.. automodule:: mudpy.menu
+ :members:
+ :undoc-members:
+ :show-inheritance:
+
mudpy\.misc module
------------------
"command",
"daemon",
"data",
+ "menu",
"misc",
"password",
"telnet",
--- /dev/null
+"""Utility functions for menu operation."""
+
+# Copyright (c) 2019 mudpy authors. Permission to use, copy,
+# modify, and distribute this software is granted under terms
+# provided in the LICENSE file distributed with this software.