- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
当我尝试导入 ctypes.wintypes
时出现此错误,我该如何解决?
In [2]: import ctypes.wintypes
---------------------------------------------------------------------------
ValueError Traceback (most recent call last)
<ipython-input-2-8395760a4e8a> in <module>()
----> 1 import ctypes.wintypes
/usr/lib/python2.7/ctypes/wintypes.py in <module>()
21
22 from ctypes import _SimpleCData
---> 23 class VARIANT_BOOL(_SimpleCData):
24 _type_ = "v"
25 def __repr__(self):
ValueError: _type_ 'v' not supported
最佳答案
您只能在 Windows 中导入 ctypes.wintypes
。 (ctypes.wintypes
包含特定于 Windows 的数据类型。)
window :
>>> import ctypes.wintypes
>>>
Linux:
>>> import ctypes.wintypes
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/lib/python2.7/ctypes/wintypes.py", line 23, in <module>
class VARIANT_BOOL(_SimpleCData):
ValueError: _type_ 'v' not supported
>>>
关于python - 导入 ctypes.wintypes 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20897842/
我的代码: coord = ctypes.windll.kernel32.GetLargestConsoleWindowSize(console_handle) coord 的真实类型是 ctypes
我在 Delphi 2009 IDE 中每天多次收到错误:wintypes.dcu not find,此错误代码补全停止工作后,我也无法使用 Ctrl + Click 打开任何单元的源代码,然后我必须
我正在尝试实现一个 python 接口(interface)。我对 c 结构的定义有疑问。如何在主结构中生成内部结构(LinV)? 手册中的定义: typedef struct { float Max
为什么下面每个字符后面都有一个空格? C++ 动态链接库 测试.h: #ifndef TEST_DLL_H #define TEST_DLL_H #define EXPORT __declspec(d
当我尝试导入 ctypes.wintypes 时出现此错误,我该如何解决? In [2]: import ctypes.wintypes -------------------------------
这是我的代码的一部分: import os def _get_appdata_path(): import ctypes from ctypes import wintypes, wi
我是一名优秀的程序员,十分优秀!