CensoredUsername / unrpyc

A ren'py script decompiler
Other
864 stars 157 forks source link

Use an OrderedDict when decompiling SL1 #33

Closed jackmcbarn closed 9 years ago

jackmcbarn commented 9 years ago

SL1 does maintain some order similar to what #20 talked about for SL2. By using OrderedDict, we can maintain this order as well.

CensoredUsername commented 9 years ago

I appreciate the suggestion, but since I want to maintain python 2.6 compatability I've fixed it in 28d29e5b9476a499ac8c9be3d2c932274f924377 using a list of tuples.

jackmcbarn commented 9 years ago

You should probably update the readme to mention that. It currently says 2.7 is required.

CensoredUsername commented 9 years ago

2.7 is required for the file "unrpyc.py" to function (due to it using the argparse module) but I maintain 2.6 compatability for the decompiler codebase so un.rpyc will work in somewhat older ren'py versions (ren'py switched to python 2.7 only fairly recently).

That's why 2.7 is required to run the tool but the decompiler is 2.6 compatible.