[Python-3000-checkins] r59889 - python/branches/py3k/Doc/library/collections.rst

christian.heimes python-3000-checkins at python.org
Thu Jan 10 17:02:19 CET 2008


Author: christian.heimes
Date: Thu Jan 10 17:02:19 2008
New Revision: 59889

Modified:
   python/branches/py3k/Doc/library/collections.rst
Log:
Fixed print -> print()

Modified: python/branches/py3k/Doc/library/collections.rst
==============================================================================
--- python/branches/py3k/Doc/library/collections.rst	(original)
+++ python/branches/py3k/Doc/library/collections.rst	Thu Jan 10 17:02:19 2008
@@ -474,7 +474,7 @@
    cursor = conn.cursor()
    cursor.execute('SELECT name, age, title, department, paygrade FROM employees')
    for emp in map(EmployeeRecord._make, cursor.fetchall()):
-       print emp.name, emp.title
+       print(emp.name, emp.title)
 
 In addition to the methods inherited from tuples, named tuples support
 three additional methods and one attribute.  To prevent conflicts with
@@ -551,7 +551,7 @@
     ...         return 'Point: x=%6.3f y=%6.3f hypot=%6.3f' % (self.x, self.y, self.hypot)
 
     >>> for p in Point(3,4), Point(14,5), Point(9./7,6):
-    ...     print p
+    ...     print(p)
 
     Point: x= 3.000 y= 4.000 hypot= 5.000
     Point: x=14.000 y= 5.000 hypot=14.866


More information about the Python-3000-checkins mailing list