浏览代码

Fix ~/.pythonrc configuration

Emmanuel Bouthenot 7 年之前
父节点
当前提交
8440aa685f
共有 1 个文件被更改,包括 2 次插入1 次删除
  1. 2 1
      .pythonrc

+ 2 - 1
.pythonrc

@@ -1,7 +1,8 @@
 try:
     import readline
 except ImportError:
-    print "Module readline not available."
+    pass
+#print "Module readline not available."
 else:
     import rlcompleter
     readline.parse_and_bind("tab: complete")