[Python-checkins] r61000 - in python/trunk: Lib/SimpleHTTPServer.py Lib/bsddb/test/test_basics.py Lib/bsddb/test/test_compat.py Lib/bsddb/test/test_cursor_pget_bug.py Lib/bsddb/test/test_dbobj.py Lib/bsddb/test/test_dbshelve.py Lib/bsddb/test/tes

Neal Norwitz nnorwitz at gmail.com
Sat Feb 23 22:19:49 CET 2008


It looks like there were a coulpe of unintended changes in here.  I
think the test_compiler one caused a bunch of buildbots to fail.

n

On Sat, Feb 23, 2008 at 9:40 AM, christian.heimes
<python-checkins at python.org> wrote:
> Author: christian.heimes
>  Date: Sat Feb 23 18:40:11 2008
>  New Revision: 61000
>
...
>
>  Modified: python/trunk/Lib/test/test_compiler.py
>  ==============================================================================
>  --- python/trunk/Lib/test/test_compiler.py      (original)
>  +++ python/trunk/Lib/test/test_compiler.py      Sat Feb 23 18:40:11 2008
>  @@ -52,7 +52,8 @@
>                          compiler.compile(buf, basename, "exec")
>                      except Exception, e:
>                          args = list(e.args)
>  -                        args[0] += "[in file %s]" % basename
>  +                        args.append("in file %s]" % basename)
>  +                        #args[0] += "[in file %s]" % basename
>                          e.args = tuple(args)
>                          raise

...

>  Modified: python/trunk/Lib/test/test_sgmllib.py
>  ==============================================================================
>  --- python/trunk/Lib/test/test_sgmllib.py       (original)
>  +++ python/trunk/Lib/test/test_sgmllib.py       Sat Feb 23 18:40:11 2008
>  @@ -1,4 +1,3 @@
>  -import htmlentitydefs
>   import pprint
>   import re
>   import sgmllib
>  @@ -116,7 +115,7 @@
>          try:
>              events = self.get_events(source)
>          except:
>  -            import sys
>  +            #import sys
>              #print >>sys.stderr, pprint.pformat(self.events)
>              raise
>          if events != expected_events:


More information about the Python-checkins mailing list