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 David.Edelsohn
Recipients David.Edelsohn, serhiy.storchaka, vstinner
Date 2014-07-13.00:02:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1405209725.25.0.867162215183.issue21951@psf.upfronthosting.co.za>
In-reply-to
Content
If I comment out all three tests, it runs.

--- a/Lib/test/test_tcl.py      Thu Jul 10 01:17:11 2014 -0400
+++ b/Lib/test/test_tcl.py      Sat Jul 12 16:59:33 2014 -0700
@@ -455,9 +455,9 @@
         check(float('inf'), 'Inf', eq=float_eq)
         check(-float('inf'), '-Inf', eq=float_eq)
         # XXX NaN representation can be not parsable by float()
-        check((), '')
-        check((1, (2,), (3, 4), '5 6', ()), '1 2 {3 4} {5 6} {}')
-        check([1, [2,], [3, 4], '5 6', []], '1 2 {3 4} {5 6} {}')
+        #check((), '')
+        #check((1, (2,), (3, 4), '5 6', ()), '1 2 {3 4} {5 6} {}')
+        #check([1, [2,], [3, 4], '5 6', []], '1 2 {3 4} {5 6} {}')
 
     def test_splitlist(self):
         splitlist = self.interp.tk.splitlist
History
Date User Action Args
2014-07-13 00:02:05David.Edelsohnsetrecipients: + David.Edelsohn, vstinner, serhiy.storchaka
2014-07-13 00:02:05David.Edelsohnsetmessageid: <1405209725.25.0.867162215183.issue21951@psf.upfronthosting.co.za>
2014-07-13 00:02:05David.Edelsohnlinkissue21951 messages
2014-07-13 00:02:05David.Edelsohncreate