Author: neal.norwitz Date: Sun Aug 12 09:02:50 2007 New Revision: 56950 Modified: python/branches/py3k/Lib/test/pystone.py Log: Get pystone working with lazy map.
Modified: python/branches/py3k/Lib/test/pystone.py ============================================================================== --- python/branches/py3k/Lib/test/pystone.py (original) +++ python/branches/py3k/Lib/test/pystone.py Sun Aug 12 09:02:50 2007 @@ -72,7 +72,7 @@ Char1Glob = '\0' Char2Glob = '\0' Array1Glob = [0]*51 -Array2Glob = map(lambda x: x[:], [Array1Glob]*51) +Array2Glob = list(map(lambda x: x[:], [Array1Glob]*51)) PtrGlb = None PtrGlbNext = None _______________________________________________ Python-3000-checkins mailing list [email protected] http://mail.python.org/mailman/listinfo/python-3000-checkins
