Antoine Pitrou <pit...@free.fr> added the comment:

I don't think the bytes -> bytearray changes are useful, e.g.:

-        fillers = ""
+        fillers = bytearray()

As for:

+            try:
+                f(empty)
+            except SystemError, err:
+                self.fail("{}({!r}) raises SystemError: {}".format(func, 
empty, err))
+            except Exception, err:
+                self.fail("{}({!r}) raises {!r}".format(func, empty, err))

The "except SystemError" is pointless, since "except Exception" will catch 
SystemError anyway.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<http://bugs.python.org/issue7703>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to