We'll keep most command stack functionality in a new hooke.command_stack
[hooke.git] / hooke / plugin / command_stack.py
index bfc15d5578296537461f3e41b543a2a10a462a5c..ab75ce40182cafb785a883c84e408a024c10681b 100644 (file)
 # License along with Hooke.  If not, see
 # <http://www.gnu.org/licenses/>.
 
-"""Records, saves and executes batches of commands
+"""The ``command_stack`` module provides :class:`CommandStackPlugin`
+and several associated :class:`~hooke.command.Command`\s exposing
+:mod`hooke.command_stack`'s functionality.
 """
 
-import os.path
-import string
-
-from .. import curve as lhc
-from .. import libinput as linput
+from ..command import Command, Argument, Failure
+from ..plugin import Builtin
+from .curve import CurveCommand
 
 class macroCommands(object):