We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c08f412 commit 49818b9Copy full SHA for 49818b9
bpython/curtsies.py
@@ -1,9 +1,9 @@
1
from __future__ import absolute_import
2
3
import code
4
+import io
5
import logging
6
import sys
-import io
7
from optparse import Option
8
9
import curtsies
bpython/repl.py
@@ -47,13 +47,13 @@
47
48
from pygments.token import Token
49
50
+from bpython import autocomplete
51
from bpython import inspection
52
from bpython._py3compat import PythonLexer, py3, prepare_for_exec
-from bpython.formatter import Parenthesis
53
-from bpython.translations import _, ngettext
54
from bpython.clipboard import get_clipboard, CopyFailed
+from bpython.formatter import Parenthesis
55
from bpython.history import History
56
-import bpython.autocomplete as autocomplete
+from bpython.translations import _, ngettext
57
58
59
class RuntimeTimer(object):
0 commit comments