diff tests/test-check-code.out @ 11343:f325db39c8b9

check-code: catch format(), introduced in Python 2.6
author Martin Geisler <mg@aragost.com>
date Tue, 15 Jun 2010 09:55:59 +0200
parents 920a783e5f91
children
line wrap: on
line diff
--- a/tests/test-check-code.out	Tue Jun 15 09:53:50 2010 +0200
+++ b/tests/test-check-code.out	Tue Jun 15 09:55:59 2010 +0200
@@ -13,7 +13,10 @@
  missing whitespace in expression
 ./non-py24.py:2:
  > if any():
- any/all not available in Python 2.4
+ any/all/format not available in Python 2.4
 ./non-py24.py:3:
  >     x = all()
- any/all not available in Python 2.4
+ any/all/format not available in Python 2.4
+./non-py24.py:4:
+ >     y = format(x)
+ any/all/format not available in Python 2.4