This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pitrou
Recipients flox, pitrou, theller
Date 2010-01-16.10:46:20
SpamBayes Score 4.7490197e-05
Marked as misclassified No
Message-id <1263638782.31.0.031908266739.issue7703@psf.upfronthosting.co.za>
In-reply-to
Content
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.
History
Date User Action Args
2010-01-16 10:46:22pitrousetrecipients: + pitrou, theller, flox
2010-01-16 10:46:22pitrousetmessageid: <1263638782.31.0.031908266739.issue7703@psf.upfronthosting.co.za>
2010-01-16 10:46:20pitroulinkissue7703 messages
2010-01-16 10:46:20pitroucreate