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 eric.smith
Recipients amaury.forgeotdarc, eric.smith, ezio.melotti, flox, jayanth, mark.dickinson, ronaldoussoren
Date 2011-11-16.09:47:20
SpamBayes Score 0.041684855
Marked as misclassified No
Message-id <1321436841.52.0.0412794847407.issue13410@psf.upfronthosting.co.za>
In-reply-to
Content
Interesting! Same here.

Using eval() fails with or without -v:

--- a/Lib/test/test_format.py
+++ b/Lib/test/test_format.py
@@ -289,6 +289,18 @@
             else:
                 raise TestFailed, '"%*d"%(maxsize, -127) should fail'
 
+    def test_issue13410(self):
+        class Foo(object):
+            def __init__(self, x):
+                self.x = x
+            def __long__(self):
+                return long(self.x)
+            def __float__(self):
+                return float(self.x)
+        eval(u'%d' % Foo(22))
+        eval('%d' % Foo(22))
+
+
 def test_main():
     test_support.run_unittest(FormatTest)
 
I've put both '%d' and u'%d' here, but it also fails with just one of them.
History
Date User Action Args
2011-11-16 09:47:21eric.smithsetrecipients: + eric.smith, ronaldoussoren, amaury.forgeotdarc, mark.dickinson, ezio.melotti, flox, jayanth
2011-11-16 09:47:21eric.smithsetmessageid: <1321436841.52.0.0412794847407.issue13410@psf.upfronthosting.co.za>
2011-11-16 09:47:20eric.smithlinkissue13410 messages
2011-11-16 09:47:20eric.smithcreate