# HG changeset patch -- Bitbucket.org
# Project pylib
# URL http://bitbucket.org/hpk42/pylib/overview
# User holger krekel <hol...@merlinux.eu>
# Date 1290363208 -3600
# Node ID eaeb7575fbcf599a10741528a3f000a01125e58a
# Parent  1fe1c89988622791b4a9103eae97fdd45c21cb69
not all python2.6.5 pass this test it seems

--- a/testing/code/test_source.py
+++ b/testing/code/test_source.py
@@ -348,7 +348,7 @@ def test_deindent():
     lines = deindent(source.splitlines())
     assert lines == ['', 'def f():', '    def g():', '        pass', '    ']
 
-...@py.test.mark.xfail("sys.version_info[:3] < (2,6,5) or "
+...@py.test.mark.xfail("sys.version_info[:3] < (2,7,0) or "
     "((3,0) <= sys.version_info[:2] < (3,2))")
 def test_source_of_class_at_eof_without_newline(tmpdir):
     # this test fails because the implicit inspect.getsource(A) below
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to