tests/test-check-code.t
changeset 25198 db77ff0b63da
parent 25178 ebc41dae840a
child 25199 e78447e61624
--- a/tests/test-check-code.t	Mon May 18 16:09:05 2015 -0500
+++ b/tests/test-check-code.t	Mon May 18 16:11:44 2015 -0500
@@ -18,10 +18,6 @@
   > a, '\\\\\\\\', "\\\\\\" x-2", "c-1"
   > EOF
   $ cat > non-py24.py <<EOF
-  > # Using builtins that does not exist in Python 2.4
-  > if True:
-  >     y = format(x)
-  > 
   > # try/except/finally block does not exist in Python 2.4
   >     try:
   >         pass
@@ -68,9 +64,6 @@
   ./quote.py:5:
    > '"""', 42+1, """and
    missing whitespace in expression
-  ./non-py24.py:3:
-   >     y = format(x)
-   format not available in Python 2.4
   ./classstyle.py:4:
    > class oldstyle_class:
    old-style class, use class foo(object)