Hi Carl, Did you mean to return a dictionary here? Or am I missing something obvious :) ?
Good luck to everyone with the release! Cheers, Ben Ben Young - Senior Software Engineer SunGard - Enterprise House, Vision Park, Histon, Cambridge, CB24 9ZR Tel +44 1223 266042 - Main +44 1223 266000 - http://www.sungard.com/ CONFIDENTIALITY: This email (including any attachments) may contain confidential, proprietary and privileged information, and unauthorized disclosure or use is prohibited. If you received this email in error, please notify the sender and delete this email from your system. Thank you. [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 07/02/2007 22:29 Please respond to [email protected] To [email protected] cc Subject [pypy-svn] r38126 - pypy/dist/pypy Author: cfbolz Date: Wed Feb 7 23:29:30 2007 New Revision: 38126 Modified: pypy/dist/pypy/conftest.py Log: add space.newlist op (to give parsing test a chance to pass). Modified: pypy/dist/pypy/conftest.py ============================================================================== --- pypy/dist/pypy/conftest.py (original) +++ pypy/dist/pypy/conftest.py Wed Feb 7 23:29:30 2007 @@ -93,6 +93,9 @@ def is_true(self, obj): return bool(obj) + def newlist(self): + return {} + class OpErrKeyboardInterrupt(KeyboardInterrupt): pass _______________________________________________ pypy-svn mailing list [email protected] http://codespeak.net/mailman/listinfo/pypy-svn _______________________________________________ [email protected] http://codespeak.net/mailman/listinfo/pypy-dev
