Skip to content

Commit 98c7a31

Browse files
update fmtstr version to fix parsing preferences bug
--HG-- branch : scroll-frontend extra : rebase_source : 1570de2eda46f968873241c32e80b75047e0cb02
1 parent ac9ed83 commit 98c7a31

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

bpython/scrollfrontend/repl.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import fmtstr.events as events
3030
from bpython.scrollfrontend.friendly import NotImplementedError
3131

32-
INFOBOX_ONLY_BELOW = True
32+
INFOBOX_ONLY_BELOW = True #TODO make this a config option if it isn't already
3333

3434
#TODO implement paste mode and figure out what the deal with config.paste_time is
3535
#TODO figure out how config.auto_display_list=False behaves and implement it
@@ -38,6 +38,9 @@
3838
#TODO figure out what config.flush_output is
3939
#TODO options.interactive, .quiet
4040
#TODO execute file if in args
41+
#TODO prettier completion box!
42+
#TODO working raw_input
43+
#TODO python3 compatibility
4144

4245
logging.basicConfig(level=logging.DEBUG, filename='repl.log', datefmt='%M:%S')
4346

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def initialize_options(self):
151151
interpreter for Unix-like operating systems.""",
152152
install_requires = [
153153
'pygments',
154-
'fmtstr'
154+
'fmtstr>=0.0.3'
155155
],
156156
tests_require = ['mock'],
157157
packages = ["bpython", "bpython.test", "bpython.translations", "bpdb"],

0 commit comments

Comments
 (0)