We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2041361 commit a835f23Copy full SHA for a835f23
2 files changed
doc/THANKS
@@ -405,6 +405,9 @@ abc abc <biedimc@gmx.net>
405
Brandon E. <brandonpoc@gmail.com>
406
for reporting a bug
407
408
+buawig <buawig@gmail.com>
409
+ for reporting a minor bug
410
+
411
Bugtrace <bugtrace@gmail.com>
412
for reporting several bugs
413
lib/core/readlineng.py
@@ -14,9 +14,11 @@
14
_readline = None
15
16
try:
17
+ from readline import *
18
import readline as _readline
19
except ImportError:
20
21
+ from pyreadline import *
22
import pyreadline as _readline
23
24
pass
0 commit comments