module fix.win32py37

Short summary

module pymyinstall.fix.win32py37

Some fixes for deprecated functions and not updated packages.

source on GitHub

Functions

function

truncated documentation

fix_win32ctypes_core_cffi__advapi32_py

Fixes the following issue:

Documentation

Some fixes for deprecated functions and not updated packages.

source on GitHub

pymyinstall.fix.win32py37.fix_win32ctypes_core_cffi__advapi32_py(filename=None, fileout=None, fLOG=None)

Fixes the following issue:

  File "C:\Python37-x64\lib\site-packages\win32ctypes\pywin32\__init__.py", line 21, in <module>
    from win32ctypes.pywin32 import win32api
  File "C:\Python37-x64\lib\site-packages\win32ctypes\pywin32\win32api.py", line 23, in <module>
    from win32ctypes.core import _common, _kernel32, _backend
  File "C:\Python37-x64\lib\site-packages\win32ctypes\core\__init__.py", line 39, in <module>
    from .cffi import _advapi32, _common, _kernel32
  File "C:\Python37-x64\lib\site-packages\win32ctypes\core\cffi\_advapi32.py", line 198

    ^
SyntaxError: invalid syntax
Command exited with code 1

If that errors happens, you could add:

python -c "from pymyinstall.fix import fix_win32ctypes_core_cffi__advapi32_py;fix_win32ctypes_core_cffi__advapi32_py(fLOG=print)"

source on GitHub