Skip to content

Commit

Permalink
Replace from ctypes import * with specific imports in viewobject.py.
Browse files Browse the repository at this point in the history
  • Loading branch information
junkmd committed Feb 5, 2025
1 parent cc22bdd commit 235c6c1
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion comtypes/viewobject.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# XXX need to find out what the share from comtypes.dataobject.
from ctypes import *
from ctypes import (
HRESULT,
POINTER,
Structure,
alignment,
c_int,
c_ubyte,
c_ulong,
c_ushort,
c_void_p,
sizeof,
)
from ctypes.wintypes import _RECTL, HDC, SIZEL, tagPOINT, tagRECT

from comtypes import COMMETHOD, GUID, IUnknown
Expand Down

0 comments on commit 235c6c1

Please sign in to comment.