This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

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

Created on 2009-10-17 00:28 by Archon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

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) * (Python committer) 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) * (Python committer) Date: 2009-10-22 15:52
Added "Platform: Unix" to curses docs in r75612.
History
Date User Action Args
2022-04-11 14:56:54adminsetgithub: 51405
2009-10-22 15:52:32georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg94358
2009-10-17 01:03:35ezio.melottisetpriority: normal

type: crash -> behavior
assignee: georg.brandl
components: + Documentation, - Library (Lib)
versions: + Python 2.6, Python 2.7, Python 3.2
nosy: + georg.brandl, ezio.melotti

messages: + msg94159
2009-10-17 00:29:47Archonsetmessages: + msg94157
2009-10-17 00:28:56Archoncreate