[Python-3000-checkins] r51592 - python/branches/p3yk/Lib/test/test_rfc822.py

brett.cannon python-3000-checkins at python.org
Fri Aug 25 05:01:14 CEST 2006


Author: brett.cannon
Date: Fri Aug 25 05:01:11 2006
New Revision: 51592

Modified:
   python/branches/p3yk/Lib/test/test_rfc822.py
Log:
The backtick removal crusade continues ...


Modified: python/branches/p3yk/Lib/test/test_rfc822.py
==============================================================================
--- python/branches/p3yk/Lib/test/test_rfc822.py	(original)
+++ python/branches/p3yk/Lib/test/test_rfc822.py	Fri Aug 25 05:01:11 2006
@@ -46,9 +46,9 @@
                 continue
             i = i + 1
             self.assertEqual(mn, n,
-                             "Un-expected name: %s != %s" % (`mn`, `n`))
+                             "Un-expected name: %r != %r" % (mn, n))
             self.assertEqual(ma, a,
-                             "Un-expected address: %s != %s" % (`ma`, `a`))
+                             "Un-expected address: %r != %r" % (ma, a))
             if mn == n and ma == a:
                 pass
             else:


More information about the Python-3000-checkins mailing list