Skip to content

Commit e945829

Browse files
Federico Ceratto federico cerattoFederico Ceratto federico ceratto
authored andcommitted
Configuration file migration code.
user: Federico Ceratto federico.ceratto@gmail.com changed bpython/cli.py
2 parents 3b37ac0 + c4e4d8f commit e945829

File tree

4 files changed

+21
-2
lines changed

4 files changed

+21
-2
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ bpython is written and maintained by Bob Farrell
44

55
Other contributors are (in alphabetical order):
66

7+
* Federico Ceratto <federico dot ceratto at gmail dot com>
78
* Pavel Panchekha <pavpanchekha at gmail dot com>
89
* Andreas Stuehrk <andy-python at hammerhartes dot de>
910

CHANGELOG

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
v0.9.0
2+
======
3+
Module import completion added.
4+
5+
Changed to paste.pocoo.org due to rafb.net no longer offering a pastebin
6+
service.
7+
8+
Switched to .ini file format for config file.
9+
10+
White background-friendly colour scheme added.
11+
12+
C-l now clears the screen.
13+
14+
SyntaxError now correctly added to history to prevent it garbling up on a
15+
redraw.
16+
17+
Probably some other things, but I hate changelogs. :)
18+
119
v0.8.0
220
======
321
It's been a long while since the last release and there've been numerous little

bpython/cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1794,7 +1794,7 @@ def safeget(self, section, option, default):
17941794
return v
17951795

17961796
if len(sys.argv) > 2:
1797-
path = sys.argv[2]
1797+
configfile = sys.argv[2]
17981798
else:
17991799
configfile = os.path.expanduser('~/.bpython.ini')
18001800

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
setup(
1717
name="bpython",
18-
version = "0.8.0",
18+
version = "0.9.0",
1919
author = "Robert Anthony Farrell",
2020
author_email = "robertanthonyfarrell@gmail.com",
2121
description = "Fancy Interface to the Python Interpreter",

0 commit comments

Comments
 (0)