Parcourir la source

Fix ~/.pythonrc configuration

Emmanuel Bouthenot il y a 7 ans
Parent
commit
8440aa685f
1 fichiers modifiés avec 2 ajouts et 1 suppressions
  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")