[pypy-svn] r75633 - pypy/branch/fast-forward/pypy/module/__builtin__

benjamin at codespeak.net benjamin at codespeak.net
Mon Jun 28 16:30:49 CEST 2010


Author: benjamin
Date: Mon Jun 28 16:30:47 2010
New Revision: 75633

Modified:
   pypy/branch/fast-forward/pypy/module/__builtin__/descriptor.py
Log:
reword comment

Modified: pypy/branch/fast-forward/pypy/module/__builtin__/descriptor.py
==============================================================================
--- pypy/branch/fast-forward/pypy/module/__builtin__/descriptor.py	(original)
+++ pypy/branch/fast-forward/pypy/module/__builtin__/descriptor.py	Mon Jun 28 16:30:47 2010
@@ -195,8 +195,8 @@
     setter = interp2app(W_Property.setter),
     deleter = interp2app(W_Property.deleter),
 )
-# This allows us to have a __doc__ of the property type and a __doc__ descriptor
-# for the instances.
+# This allows there to be a __doc__ of the property type and a __doc__
+# descriptor for the instances.
 W_Property.typedef.rawdict['__doc__'] = interp_attrproperty_w('w_doc',
                                                               W_Property)
 



More information about the Pypy-commit mailing list