I received a Python project (which happens to be a Django project, if that matters,) that uses the fcntl
module from the standard library, which seems to be available only on Linux. When I try to run it on my Windows machine, it stops with an ImportError
, because this module does not exist here.
Is there any way for me to make a small change in the program to make it work on Windows?