]> granicus.if.org Git - python/commitdiff
Avoid testing stuff that's been fixed in 2.7 on older Pythons
authorAntoine Pitrou <solipsis@pitrou.net>
Tue, 4 Oct 2011 10:00:13 +0000 (12:00 +0200)
committerAntoine Pitrou <solipsis@pitrou.net>
Tue, 4 Oct 2011 10:00:13 +0000 (12:00 +0200)
Lib/test/test_xpickle.py

index 2ce1dcbb24e6bc106459d0ae000817aa7877b670..ac3a33f321735adc801aef4f194290a0d4247b09 100644 (file)
@@ -154,6 +154,10 @@ class AbstractCompatTests(AbstractPickleTests):
     def test_unicode_high_plane(self):
         pass
 
+    # This tests a fix that's in 2.7 only
+    def test_dynamic_class(self):
+        pass
+
     if test_support.have_unicode:
         # This is a cut-down version of pickletester's test_unicode. Backwards
         # compatibility was explicitly broken in r67934 to fix a bug.