mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Get pystone working with lazy map.
This commit is contained in:
parent
aea70e03c4
commit
9b2a26989d
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue