adang1345

Results 5 issues of adang1345

Hi, I'm the maintainer of https://github.com/adang1345/delvewheel, which is a tool that bundles external DLLs into wheels. I have seen reports that whenever `pyinstaller` is used to create an executable that...

I am using `pefile` 2022.5.30 on Windows. Consider the following code, which corrects the header checksum of a PE file. ```Python import pefile with pefile.PE('libffi-8.dll') as file: file.OPTIONAL_HEADER.CheckSum = file.generate_checksum()...

Notes to self for when I start working on Python 3.13 on Windows 7. `ProcessSnapshot.h` is not available on Windows 7, so `restore-win7-handling.patch` reverts the change that introduced its usage...

Notes to self for when I start working on Python 3.14 on Windows 7. Test the `pathlib.Path.copy()` method introduced in https://github.com/python/cpython/pull/119058 and modified in https://github.com/python/cpython/commit/f09d184821efd9438d092643881e28bdf8de4de5. It uses `CopyFile2()`, which is...

If you're building a C++ project on GitHub Actions that uses `std::mutex`, then you may encounter an access violation when using that project in a `delvewheel`-repaired wheel. To fix this,...