We'll keep most command stack functionality in a new hooke.command_stack
[hooke.git] / hooke / plugin / command_stack.py
index fc696a76a003742031e67187a73c02b6711e9de3..ab75ce40182cafb785a883c84e408a024c10681b 100644 (file)
 # <http://www.gnu.org/licenses/>.
 
 """The ``command_stack`` module provides :class:`CommandStackPlugin`
-and several associated :class:`~hooke.command.Command`\s for managing
-stacks of :class:`~hooke.engine.CommandMessage`\s and applying those
-stacks to :class:`~hooke.curve.Curve`\s.
+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):