jchristman / PyDA

Python binary DisAssembler
http://suntzuii.github.io/PyDA/
Other
26 stars 10 forks source link

Standardize Collection Formats in Common #47

Open direwolf314 opened 10 years ago

direwolf314 commented 10 years ago

Simplify which data structures are used within the different 'common' classes. Right now they store data as lists, tuples, dicts, and sets, even when it's basically the same concept (eg. functions and strings in CommonSectionFormat). Sets have a nice O(1) lookup and are nice when used properly.