File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 11CHANGELOG
22=========
33
4+ 0.37: 2017-03-26
5+ ----------------
6+
7+ Fixes:
8+ - Display 'VISUAL BLOCK' and 'INSERT' when we're in these modes.
9+ - Handle ValueError in PythonValidator. Python2 raises ValueError if the input
10+ contains an invalid escape sequence.
11+ - Use load_key_bindings instead of KeyBindingsManager. (For the latest
12+ prompt_toolkit.)
13+ - Set 'reverse_vi_search_direction'. (Search backwards when '/' was pressed in
14+ Vi mode.)
15+ - Check for symlink when creating config dir.
16+ - Make default config dir filepath OS independent.
17+ - Remove minor python version in entry point.
18+ - Fixed .ptpython directory creation in run_ptpython.
19+
20+ New features:
21+ - Also accept Ctrl-D for quitting the 'exit confirmation' dialog.
22+
23+ Requires prompt_toolkit 1.0.14.
24+
25+
4260.36: 2016-10-16
527----------------
628
Original file line number Diff line number Diff line change 1414setup (
1515 name = 'ptpython' ,
1616 author = 'Jonathan Slenders' ,
17- version = '0.36 ' ,
17+ version = '0.37 ' ,
1818 url = 'https://github.com/jonathanslenders/ptpython' ,
1919 description = 'Python REPL build on top of prompt_toolkit' ,
2020 long_description = long_description ,
2121 packages = find_packages ('.' ),
2222 install_requires = [
2323 'docopt' ,
2424 'jedi>=0.9.0' ,
25- 'prompt_toolkit>=1.0.0 ,<2.0.0' ,
25+ 'prompt_toolkit>=1.0.14 ,<2.0.0' ,
2626 'pygments' ,
2727 ],
2828 entry_points = {
You can’t perform that action at this time.
0 commit comments