]> granicus.if.org Git - python/commitdiff
Comment how 'from __future__ import print_function' operates in 3.0.
authorEric Smith <eric@trueblade.com>
Thu, 20 Mar 2008 23:56:08 +0000 (23:56 +0000)
committerEric Smith <eric@trueblade.com>
Thu, 20 Mar 2008 23:56:08 +0000 (23:56 +0000)
Lib/test/test_print.py

index e9405c55da05d7ebbaf9a8f713fa77a3cb8a856c..0c46f9baa9a7465fad55e10872e55c5a867caf8c 100644 (file)
@@ -1,6 +1,8 @@
 """Test correct operation of the print function.
 """
 
+# In 2.6, this gives us the behavior we want.  In 3.0, it has
+#  no function, but it still must parse correctly.
 from __future__ import print_function
 
 import unittest