You've already forked python-uncompyle6
mirror of
https://github.com/rocky/python-uncompyle6.git
synced 2025-08-02 16:44:46 +08:00
9 lines
251 B
Python
9 lines
251 B
Python
palette = map(lambda a: (a,a,a), range(256))
|
|
palette = map(lambda (r,g,b): chr(r)+chr(g)+chr(b), palette)
|
|
palette = map(lambda r: r, palette)
|
|
|
|
palette = lambda (r,g,b,): r
|
|
palette = lambda (r): r
|
|
palette = lambda r: r
|
|
palette = lambda (r): r, palette
|