mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
Add Python 3.5 disassembly support
This commit is contained in:
parent
6883a7ecf0
commit
5fae3e2d1f
9 changed files with 240 additions and 210 deletions
|
|
@ -124,6 +124,12 @@ void PycModule::setVersion(unsigned int magic)
|
|||
m_unicode = true;
|
||||
break;
|
||||
|
||||
case MAGIC_3_5:
|
||||
m_maj = 3;
|
||||
m_min = 5;
|
||||
m_unicode = true;
|
||||
break;
|
||||
|
||||
/* Bad Magic detected */
|
||||
default:
|
||||
m_maj = -1;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue