From 4a97c035a98e38f90325b8fe80aa69ae4250e8f2 Mon Sep 17 00:00:00 2001 From: Bob Farrell Date: Sat, 28 Jun 2008 14:22:31 +0100 Subject: [PATCH] Typo fixed --- CHANGELOG | 4 ++++ bpython.py | 4 ++-- setup.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 66efa84..c35f3d5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v0.6.3 +====== +Forgot to switch rpartition to split for 2.4 compat. + v0.6.2 ====== The help() now works (as far as I can see) exactly the same diff --git a/bpython.py b/bpython.py index 478af94..a2c19b9 100644 --- a/bpython.py +++ b/bpython.py @@ -1,5 +1,5 @@ #!/usr/bin/env python -# bpython 0.5.4::fancy curses interface to the Python repl::Bob Farrell 2008 +# bpython 0.6.3::fancy curses interface to the Python repl::Bob Farrell 2008 # # The MIT License # @@ -62,7 +62,7 @@ else: try: from pyparsing import Forward, Suppress, QuotedString, dblQuotedString, \ Group, OneOrMore, ZeroOrMore, Literal, Optional, Word, \ - alphas, alphanums, printables, ParseExxception + alphas, alphanums, printables, ParseException except ImportError: OPTS.arg_spec = False print ("pyparsing could not be imported properly, " diff --git a/setup.py b/setup.py index 37802f4..6365ea3 100644 --- a/setup.py +++ b/setup.py @@ -31,7 +31,7 @@ PYTHONLIB = os.path.join(get_python_lib(standard_lib=1, prefix=""), "site-packages") setup(name="bpython", - version = "0.5.3", + version = "0.6.3", description = "Fancy Interface to the Python Interpreter", author = "Robert Anthony Farrell", author_email = "robertanthonyfarrell@gmail.com",