rocky / python-xdis

Python cross-version bytecode library and disassembler
GNU General Public License v2.0
300 stars 95 forks source link

Allow TCs run under Windows #148

Closed greenozon closed 3 months ago

greenozon commented 3 months ago

a try to address Windows issue from https://github.com/rocky/python-xdis/issues/147

rocky commented 3 months ago

Slightly better is using

PYTHON_UTF ?=  1

so that it can be changed from the outside and then later...

@PYTHON_VERSION= ... PYTHON_UTF=$(PYTHON_UTF) 

Setting LINT should have been done that way as well.

Also, please put this in a new branch. Please don't keep making changes to the same previously merged branch, but instead one PR per issue. Thanks.