Results 518 comments of AraHaan

I think support for having the C extensions inside of the zip ``bundle_files == 2`` is perfect for now (python core dll with exe only). C extensions without TLS when...

> Very well. Then, could you prepare a PR for the necessary changes for Python 3.12 and 3.13? I will prepare the exceptions, the warnings, and the release notes. We...

> > I can, but it will take some time to do that as I would need to carefully look at the related C code, make changes, and then locally...

And I just pushed another change to the C code. https://github.com/AraHaan/py2exe/commit/d2a38af7237bfae74e658440b2424d08196bce0f

After looking at #174 I feel like some tests needs to be taken to see if it flawlessly works in python 3.12+ like say a pre-release of 3.14 for example.

I wonder if it is possible to convert the zipextimporter to a c extension that is built directly into the runstubs to make it easier on constructing the zip as...

A managed to get ghidra to analyze ntdll.dll's ``LdrpHandleTlsData`` symbol and then from there did some research on reactos on what they have on TLS data's and then found this:...

Ayy it compiles with this header: ```h NTSTATUS NTAPI LdrpInitializeTls(VOID); VOID NTAPI LdrpFreeTls(VOID); ``` And yes I made slight changes to the code from reactos linked above but have not...

After all of the work to test out the TLS code from reactos with changes it would still cause crashes when I integrated a special modified handler for when ``/DelayLoad:pythonXYY[_d].dll...