summaryrefslogtreecommitdiff
path: root/Lib/test
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-10-04 12:00:13 +0200
committerAntoine Pitrou <solipsis@pitrou.net>2011-10-04 12:00:13 +0200
commit09debc9a5ba53c461f8f0cf8024e76af153cabf5 (patch)
tree2d6ab11ff2b830f07421666d5693cbeb8a6e9dfa /Lib/test
parent561a821e93dc5c5aff9c5e26a3cbe482ac154a51 (diff)
downloadcpython-git-09debc9a5ba53c461f8f0cf8024e76af153cabf5.tar.gz
Avoid testing stuff that's been fixed in 2.7 on older Pythons
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_xpickle.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/Lib/test/test_xpickle.py b/Lib/test/test_xpickle.py
index 2ce1dcbb24..ac3a33f321 100644
--- a/Lib/test/test_xpickle.py
+++ b/Lib/test/test_xpickle.py
@@ -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.