Author: Michael Hudson-Doyle <[email protected]> Branch: Changeset: r203:a22b9a201c8f Date: 2012-12-20 08:15 +1300 http://bitbucket.org/pypy/pyrepl/changeset/a22b9a201c8f/
Log: Remove some out of date info from README diff --git a/README b/README --- a/README +++ b/README @@ -1,6 +1,4 @@ -This is pyrepl 0.8.3, a readline-a-like in Python. - -http://pyrepl.codespeak.net/ +This is pyrepl 0.8.4, a readline-a-like in Python. It requires python 2.7 (or newer) and features: @@ -36,13 +34,6 @@ which will also install the above "pythoni" script. -Please direct comments to [email protected]. - -(If you've released open source software you'll know how frustrating -it is to see a couple of hundred downloads and only get a handful of -emails, so don't think I'll be irritated by the banality of your -comments!) - Summary of 0.8.4: diff --git a/pyrepl/unix_console.py b/pyrepl/unix_console.py --- a/pyrepl/unix_console.py +++ b/pyrepl/unix_console.py @@ -358,6 +358,7 @@ # per-readline preparations: self.__svtermstate = tcgetattr(self.input_fd) raw = self.__svtermstate.copy() + raw.iflag |= termios.ICRNL raw.iflag &=~ (termios.BRKINT | termios.INPCK | termios.ISTRIP | termios.IXON) raw.oflag &=~ (termios.OPOST) _______________________________________________ pypy-commit mailing list [email protected] http://mail.python.org/mailman/listinfo/pypy-commit
