pycdc icon indicating copy to clipboard operation
pycdc copied to clipboard

Disassembler/Decompiler

Open Intellbg opened this issue 2 years ago • 1 comments

Why I am able to use pycdas with my file, but when pycdas is used i got the following error.

 # Source Generated with Decompyle++
# File: siemensExtractor.pyc (Python 3.9)

Unsupported opcode: <255>
from os.path import exists
from datetime import datetime
import json
import os
import pandas as pd
import requests
import io
# WARNING: Decompyle incomplete

Intellbg avatar Jul 19 '22 02:07 Intellbg

Decompilation doesn't really work for versions >= 3.8. There is new opcodes and compiler output got more efficient/dense. You could try python 3.7, or look at my PR that fixes for loops in 3.8

ahaensler avatar Jul 30 '22 05:07 ahaensler