Typo fixed

This commit is contained in:
Bob Farrell
2008-06-28 14:22:31 +01:00
parent 39aef3aeb9
commit 4a97c035a9
3 changed files with 7 additions and 3 deletions
+4
View File
@@ -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
+2 -2
View File
@@ -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, "
+1 -1
View File
@@ -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",