From c709d8b599761009edc3c81269dbd4054031eb8d 2011-03-23 20:03:27 From: Thomas Kluyver Date: 2011-03-23 20:03:27 Subject: [PATCH] Disable readline \M-i, so characters 0x9000-0x9fff don't crash IPython. closes gh-58 --- diff --git a/IPython/core/interactiveshell.py b/IPython/core/interactiveshell.py index f9f1ca2..6d27ef1 100644 --- a/IPython/core/interactiveshell.py +++ b/IPython/core/interactiveshell.py @@ -192,7 +192,8 @@ class InteractiveShell(Configurable, Magic): '"\C-l": clear-screen', 'set show-all-if-ambiguous on', '"\C-o": tab-insert', - '"\M-i": " "', + # See bug gh-58 - with \M-i enabled, chars 0x9000-0x9fff + # crash IPython. '"\M-o": "\d\d\d\d"', '"\M-I": "\d\d\d\d"', '"\C-r": reverse-search-history',