1
0
forked from VimPlug/jedi

Merge remote-tracking branch 'origin/dev' into builtin

This commit is contained in:
Dave Halter
2014-01-12 17:04:48 +01:00

View File

@@ -1,11 +1,16 @@
from jedi._compatibility import u, encoding, is_py3k
import inspect
import os
import time
try:
# Use colorama for nicer console output.
from colorama import Fore, init
init()
if not os.name == 'nt':
# Use colorama for nicer console output.
from colorama import Fore, init
init()
# does not work on Windows, as pyreadline and colorama interfere
else:
raise ImportError
except ImportError:
class Fore(object):
RED = ''