From 45e44807fae6978ebfd36e062cbcc645b4cb3a6e Mon Sep 17 00:00:00 2001 From: Bob Farrell Date: Wed, 30 Apr 2008 18:48:21 +0100 Subject: [PATCH] dksaldasd --- CHANGELOG | 7 +++++++ bpython.py | 1 - 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 9fc1007..47256ce 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,10 @@ +v0.3.2 +====== +Thanks to Aaron Gallagher for pointing out a case where the hugely +inefficient list generation routines were actually making a significant +issue; they're much more efficient now and should hopefully not cause +any more problems. + v0.3.1 ====== Thanks to Klaus Alexander Seis for the expanduser() patch. diff --git a/bpython.py b/bpython.py index 0853265..d0d2c23 100644 --- a/bpython.py +++ b/bpython.py @@ -398,7 +398,6 @@ class Repl: items_t = items[:] items = items_t[:1] while len(items) != len(items_t): - DEBUG( str(opth) + ':' + str(max_h) ) trunc = True wl, l, optw, opth = calc_lsize( 0.6 ) # bllllaaarrgghhh items.append( items_t[ len(items) -1 ] )