Skip to content

Commit 0e19cd8

Browse files
committed
Merge from ikanobori's repo
2 parents 0bf852f + e2d52d1 commit 0e19cd8

File tree

3 files changed

+24
-4
lines changed

3 files changed

+24
-4
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ Other contributors are (in alphabetical order):
77
* Federico Ceratto <federico dot ceratto at gmail dot com>
88
* Pavel Panchekha <pavpanchekha at gmail dot com>
99
* Andreas Stuehrk <andy-python at hammerhartes dot de>
10+
* Simon de Vlieger <simon at ikanobori dot jp>
1011

1112

1213
Many thanks for all contributions!

README

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,16 @@ I hope you find it useful and please feel free to
4141
submit any bugs/patches (yeah right)/suggestions
4242
to:
4343
robertanthonyfarrell@gmail.com
44+
or place them at the bitbucket issue page for this
45+
project at:
46+
http://bitbucket.org/bobf/bpython/issues/
47+
48+
For any other ways of communicating with bpython
49+
users and devs you can find us at the communication
50+
page on the projects homepage:
51+
http://www.noiseforfree.com/bpython/community.html
52+
53+
Hope to see you there!
4454

4555
Features
4656
========
@@ -84,7 +94,7 @@ as you type.
8494
I don't really use the save thing much, but the pastebin
8595
thing's great. Hit a key and what you see on the screen
8696
will be sent to a pastebin and a URL is returned for you
87-
to do what you like with. I've hardcoded rafb.net/paste
97+
to do what you like with. I've hardcoded paste.pocoo.org
8898
in for now, that needs to be fixed so it's configurable.
8999
Next release, I promise.
90100

@@ -108,3 +118,10 @@ Known Bugs
108118

109119
* Triple quoted strings over multiple lines work, but they're
110120
not highlighted properly.
121+
* Unicode schmunicode is in the works but will take some work
122+
to have curses play nice.
123+
124+
For more known bugs please see bpython's issue tracker at
125+
bitbucket:
126+
127+
http://bitbucket.org/bobf/bpython/issues/

bpython/cli.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
from bpython import __version__
7070

7171
def log(x):
72-
f = open('/home/bob/tmp/bpython.out', 'a')
72+
f = open('/tmp/bpython.log', 'a')
7373
f.write('%s\n' % (x,))
7474

7575

@@ -119,8 +119,6 @@ def readlines(self, x):
119119

120120
# TODO:
121121
#
122-
# C-l doesn't repaint the screen yet.
123-
#
124122
# Tab completion does not work if not at the end of the line.
125123
#
126124
# Numerous optimisations can be made but it seems to do all the lookup stuff
@@ -1682,6 +1680,10 @@ def init_wins(scr, cols):
16821680
# Thanks to Angus Gibson for pointing out this missing line which was causing
16831681
# problems that needed dirty hackery to fix. :)
16841682

1683+
# TODO:
1684+
#
1685+
# This should show to be configured keys from bpython.ini
1686+
#
16851687
statusbar = Statusbar(scr, main_win,
16861688
".:: <C-d> Exit <C-r> Rewind <F2> Save <F8> Pastebin ::.",
16871689
(cols["g"]) * cols["y"] + 1)

0 commit comments

Comments
 (0)