[pypy-svn] r73409 - pypy/branch/cpython-extension/pypy/module/cpyext

afa at codespeak.net afa at codespeak.net
Mon Apr 5 14:04:54 CEST 2010


Author: afa
Date: Mon Apr  5 14:04:51 2010
New Revision: 73409

Modified:
   pypy/branch/cpython-extension/pypy/module/cpyext/mapping.py
Log:
Remove outdated comment


Modified: pypy/branch/cpython-extension/pypy/module/cpyext/mapping.py
==============================================================================
--- pypy/branch/cpython-extension/pypy/module/cpyext/mapping.py	(original)
+++ pypy/branch/cpython-extension/pypy/module/cpyext/mapping.py	Mon Apr  5 14:04:51 2010
@@ -6,6 +6,4 @@
 def PyMapping_Keys(space, w_obj):
     """On success, return a list of the keys in object o.  On failure, return NULL.
     This is equivalent to the Python expression o.keys()."""
-    # XXX: Cpython implements this in terms of PyObject_CallMethod, we should
-    # do that eventually.
     return space.call_method(w_obj, "keys")



More information about the Pypy-commit mailing list