Get pystone working with lazy map.

This commit is contained in:
Neal Norwitz 2007-08-12 07:02:50 +00:00
parent aea70e03c4
commit 9b2a26989d
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ BoolGlob = FALSE
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