mirror of
https://github.com/zrax/pycdc.git
synced 2026-06-23 11:34:07 +00:00
some fixes for 3.9
This commit is contained in:
parent
b0ce84234a
commit
882571c599
3 changed files with 80 additions and 30 deletions
|
|
@ -140,7 +140,8 @@ bool Pyc::IsCellArg(int opcode)
|
|||
bool Pyc::IsJumpArg(int opcode)
|
||||
{
|
||||
return (opcode == Pyc::POP_JUMP_IF_FALSE_A) || (opcode == Pyc::POP_JUMP_IF_TRUE_A) ||
|
||||
(opcode == Pyc::JUMP_IF_FALSE_OR_POP_A) || (opcode == JUMP_IF_TRUE_OR_POP_A);
|
||||
(opcode == Pyc::JUMP_IF_FALSE_OR_POP_A) || (opcode == JUMP_IF_TRUE_OR_POP_A) ||
|
||||
(opcode == Pyc::JUMP_ABSOLUTE_A) || (opcode == Pyc::JUMP_IF_NOT_EXC_MATCH_A);
|
||||
}
|
||||
|
||||
bool Pyc::IsJumpOffsetArg(int opcode)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue