From c2f1374bb73e5bd862d42951f2457b169033c6b3 2013-05-15 21:45:48 From: MinRK Date: 2013-05-15 21:45:48 Subject: [PATCH] clarify FIXME comment for magics aliases --- diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index f46c8f4..fe3b6bf 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -2055,7 +2055,8 @@ class InteractiveShell(SingletonConfigurable): # Register Magic Aliases mman = self.magics_manager - # surely, this can't be were magics aliases should be defined? + # FIXME: magic aliases should be defined by the Magics classes + # or in MagicsManager, not here mman.register_alias('ed', 'edit') mman.register_alias('hist', 'history') mman.register_alias('rep', 'recall')