classification
Title: curses can't find _curses
Type: behavior Stage:
Components: Documentation Versions: Python 3.2, Python 3.1, Python 2.7, Python 2.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: georg.brandl Nosy List: Archon, ezio.melotti, georg.brandl (3)
Priority: normal Keywords

Created on 2009-10-17 00:28 by Archon, last changed 2009-10-22 15:52 by georg.brandl.

Messages (3)
msg94157 - (view) Author: (Archon) Date: 2009-10-17 00:29
When I try to import curses, it returns the error:

Traceback (most recent call last):
  File "C:\Python31\Lib\curses\__init__.py", line 15, in <module>
    from _curses import *
ImportError: No module named _curses
msg94159 - (view) Author: Ezio Melotti (ezio.melotti) Date: 2009-10-17 01:03
I tried with several versions of Python and Windows and I got the same
error on all, so I think it's normal.
The documentation is not clear about that though, so it should be added
a paragraph that explain why it doesn't work and if/how it's possible to
make it work.
msg94358 - (view) Author: Georg Brandl (georg.brandl) Date: 2009-10-22 15:52
Added "Platform: Unix" to curses docs in r75612.
History
Date User Action Args
2009-10-22 15:52:32georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg94358
2009-10-17 01:03:35ezio.melottiset
nosy: + georg.brandl, ezio.melotti
versions: + Python 2.6, Python 2.7, Python 3.2
messages: + msg94159
priority: normal
assignee: georg.brandl
components: + Documentation, - Library (Lib)
type: crash -> behavior
2009-10-17 00:29:47Archonsetmessages: + msg94157
2009-10-17 00:28:56Archoncreate