R. Bernstein

Results 795 comments of R. Bernstein

I know from my own experience that handling this kind of expression logic is difficult. It is mentioned as a problem in th 5.1 code that this was based on....

I'll note that [unluac](https://sourceforge.net/projects/unluac/) doesn't have a problem decompling this.

> @rocky thanks for your feedback. There is a still maintained project on sourceforce, amazing ! (I have a couple of projects that I still maintain on sourceforge that I...

Wasn't aware of this. I will reconsider sourceforge. (And github is now Microsoft; gitlab or bitbucket then?) Speaking of dodgy info https://stackoverflow.com/a/67565648/546218 seems wrong based on what I have recently...

Seems like a similar thing to https://github.com/viruscamp/luadec/issues/75 is going on here. So also see the section "Status" in https://github.com/sztupy/luadec51/blob/master/README.markdown And as with #75 this problem is fixed in [unluac](https://sourceforge.net/projects/unluac/)

Are you able to disassemble the bytecode?

I am not seeing a problem In the fork of this over at https://github.com/rocky/x-python which handles Python bytecode from version 2.5 or so to 3.10 (with some gaps around 3.0):...

[xpython](https://github.com/rocky/x-python) has * the 3.9 opcodes, and via [xdis](https://github.com/rocky/x-python), * allows the interpreter to interpret different bytecode from the bytecode that Python is running the interpreter, and * Has a...

@vrthra See https://github.com/rocky/x-python/blob/master/xpython/byteop/byteop35.py https://github.com/rocky/x-python/blob/master/xpython/byteop/byteop36.py and https://github.com/rocky/x-python/blob/master/xpython/byteop/byteop37.py for most of the new byteops. 3.5 `WITH_CLEANUP_{START,FINISH}` are half working, and some of the new `async` opcodes are lagging, but the most used...

@akaptur I'm guessing it was fixed previously. I am not seeing this problem in [x-python fork](https://github.com/rocky/x-python): ``` $ xpython -vc "[x for x in [1,2,3]]" INFO:xpython.pyvm2:Line 1, 0: LOAD_CONST INFO:xpython.pyvm2:...