从 jython 访问 winreg

Accessing winreg from jython

为什么无法从 jython 访问 _winreg 模块?

c:\>python  
Python 2.7.9 (default, Dec 10 2014, 12:24:55) [MSC v.1500 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.  
import _winreg  

c:\>jython  
Jython 2.7b1 (default:ac42d59644e9, Feb 9 2013, 15:24:52)
[Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)] on java1.6.0_31
Type "help", "copyright", "credits" or "license" for more information.  
import _winreg  
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ImportError: No module named _winreg

_winreg 在 Jython 中不可用。

在CPython on Windows中,_winreg是一个内置模块(镜像底层Windows API)被编译成Python 翻译。这可以通过检查 sys.builtin_module_names 属性.

来验证

另见 Python alternative to _winreg