Search Results

1
vote
1answer
680 views

How can I unload a DLL using ctypes in Python?

I'm using ctypes to load a DLL in Python. This works great. Now we'd like to be able to reload that DLL at runtime. The straightforward approach would seem to be: 1. Unload DLL 2 …