Fixes readline support on windows

Closes #60
This commit is contained in:
Manuel Ebert 2013-04-17 10:50:03 +02:00
parent c92339e4e2
commit 65aff0d75e
3 changed files with 10 additions and 4 deletions

View file

@ -16,6 +16,10 @@ try:
from Crypto.Random import random, atfork
except ImportError:
pass
try:
import pyreadline as readline
except ImportError:
import readline
import hashlib
import getpass
try: