benjamin.peterson
2008-10-29 20:35:35 UTC
Author: benjamin.peterson
Date: Wed Oct 29 21:35:35 2008
New Revision: 67043
Log:
fix some more print statements
Modified:
python/branches/py3k/Doc/reference/datamodel.rst
Modified: python/branches/py3k/Doc/reference/datamodel.rst
==============================================================================
--- python/branches/py3k/Doc/reference/datamodel.rst (original)
+++ python/branches/py3k/Doc/reference/datamodel.rst Wed Oct 29 21:35:35 2008
@@ -1918,14 +1918,14 @@
... def __getattribute__(*args):
- ... print "Metaclass getattribute invoked"
+ ... print("Metaclass getattribute invoked")
... return type.__getattribute__(*args)
...
... def __len__(self):
... return 10
... def __getattribute__(*args):
- ... print "Class getattribute invoked"
+ ... print("Class getattribute invoked")
... return object.__getattribute__(*args)
...
Date: Wed Oct 29 21:35:35 2008
New Revision: 67043
Log:
fix some more print statements
Modified:
python/branches/py3k/Doc/reference/datamodel.rst
Modified: python/branches/py3k/Doc/reference/datamodel.rst
==============================================================================
--- python/branches/py3k/Doc/reference/datamodel.rst (original)
+++ python/branches/py3k/Doc/reference/datamodel.rst Wed Oct 29 21:35:35 2008
@@ -1918,14 +1918,14 @@
... def __getattribute__(*args):
- ... print "Metaclass getattribute invoked"
+ ... print("Metaclass getattribute invoked")
... return type.__getattribute__(*args)
...
... def __len__(self):
... return 10
... def __getattribute__(*args):
- ... print "Class getattribute invoked"
+ ... print("Class getattribute invoked")
... return object.__getattribute__(*args)
...
c = C()