ImportError al importar el módulo winreg de python

Quería usar el módulo winreg de python para trabajar con el registro de Windows. Pero cuando intento importar el módulo winreg, da ImportError.

Python 2.4.3 (#1, Dec 11 2006, 11:39:03) 
[GCC 4.1.1 20061130 (Red Hat 4.1.1-43)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import __winreg
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
ImportError: No module named __winreg
>>> import _winreg
Traceback (most recent call last):
  File "<stdin>", line 1, in ?
ImportError: No module named _winreg

¿Necesito instalar este módulo por separado? Cualquier sugerencia sería útil.

Respuestas a la pregunta(2)

Su respuesta a la pregunta