diff --git a/IPython/terminal/interactiveshell.py b/IPython/terminal/interactiveshell.py index 372547e..cec2762 100644 --- a/IPython/terminal/interactiveshell.py +++ b/IPython/terminal/interactiveshell.py @@ -379,6 +379,8 @@ class TerminalInteractiveShell(InteractiveShell): if os.name == 'posix': aliases = [('clear', 'clear'), ('more', 'more'), ('less', 'less'), ('man', 'man')] + else : + aliases = [] for name, cmd in aliases: self.alias_manager.soft_define_alias(name, cmd)