ソースを参照

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")