Explorar el Código

Fix ~/.pythonrc configuration

Emmanuel Bouthenot hace 7 años
padre
commit
8440aa685f
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  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")