File tree Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Expand file tree Collapse file tree 3 files changed +6
-7
lines changed Original file line number Diff line number Diff line change 21
21
from bpython .translations import _
22
22
from bpython ._py3compat import py3
23
23
24
- from curtsies .fsarray import FSArray
25
- from curtsies .fmtstr import fmtstr , FmtStr
24
+ from curtsies import FSArray , fmtstr , FmtStr
26
25
from curtsies .bpythonparse import parse as bpythonparse
27
26
from curtsies .bpythonparse import func_for_letter , color_for_letter
28
27
from curtsies import fmtfuncs
28
+ from curtsies import events
29
29
30
30
from bpython .curtsiesfrontend .manual_readline import char_sequences as rl_char_sequences
31
31
from bpython .curtsiesfrontend .manual_readline import get_updated_char_sequences
32
32
from bpython .curtsiesfrontend .interaction import StatusBar
33
33
from bpython .curtsiesfrontend import sitefix ; sitefix .monkeypatch_quit ()
34
34
import bpython .curtsiesfrontend .replpainter as paint
35
- import curtsies .events as events
36
35
from bpython .curtsiesfrontend .coderunner import CodeRunner , FakeOutput
37
36
38
37
#TODO other autocomplete modes (also fix in other bpython implementations)
Original file line number Diff line number Diff line change 2
2
import logging
3
3
import os
4
4
5
- from curtsies .fmtfuncs import bold
6
- from curtsies .fsarray import fsarray
5
+ from curtsies import fsarray , fmtstr
7
6
from curtsies .bpythonparse import func_for_letter
8
- from curtsies .fmtstr import fmtstr , linesplit
7
+ from curtsies .formatstring import linesplit
8
+ from curtsies .fmtfuncs import bold
9
9
10
10
from bpython ._py3compat import py3
11
11
if not py3 :
Original file line number Diff line number Diff line change @@ -151,7 +151,7 @@ def initialize_options(self):
151
151
152
152
if sys .version_info [:2 ] >= (2 , 6 ):
153
153
# curtsies only supports 2.6 and onwards
154
- extras_require ['curtsies' ] = ['curtsies >=0.0.32 , <0.1 .0' , 'greenlet' ]
154
+ extras_require ['curtsies' ] = ['curtsies >=0.1.0 , <0.2 .0' , 'greenlet' ]
155
155
packages .append ("bpython.curtsiesfrontend" )
156
156
entry_points ['console_scripts' ].append (
157
157
'bpython-curtsies = bpython.curtsies:main [curtsies]' )
You can’t perform that action at this time.
0 commit comments