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: Use of the `curses' resource not enabled
Type: Stage:
Components: Build Versions: Python 2.7
process
Status: closed Resolution: not a bug
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, steve@integrityintegrators.net
Priority: normal Keywords:

Created on 2009-02-24 00:48 by steve@integrityintegrators.net, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (6)
msg82650 - (view) Author: Steve Owens (steve@integrityintegrators.net) Date: 2009-02-24 00:48
I just did an SVN checkout of the 2.7 source, ran the following in order:
configure
make
make test

When I run make test it gets to the lines:

test_curses
test_curses skipped -- Use of the `curses' resource not enabled

but I have ncurses installed and enabled.  In fact I was using the
python curses library on my machine when I was running the latest Fedora
YUM install of Python.  

So I am not sure if anyone knows what might be responsible for this message.
msg82651 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-02-24 00:56
You have to pass the -ucurses options to regrtest.py. See regrtest.py -h.
msg82653 - (view) Author: Steve Owens (steve@integrityintegrators.net) Date: 2009-02-24 02:02
Benjamin,

I ran the regrtest.py file with the -ucurses option and didn't get the error.

However, I don't see how it is possible to send the -ucurses option
through via the make file.

Steve Owens

>
> Benjamin Peterson <benjamin@python.org> added the comment:
>
> You have to pass the -ucurses options to regrtest.py. See regrtest.py -h.
>
> ----------
> nosy: +benjamin.peterson
> resolution:  -> invalid
> status: open -> closed
>
> _______________________________________
> Python tracker <report@bugs.python.org>
> <http://bugs.python.org/issue5356>
> _______________________________________
>
msg82654 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-02-24 02:11
On Mon, Feb 23, 2009 at 8:02 PM, Steve Owens <report@bugs.python.org> wrote:
>
> Steve Owens <steve@integrityintegrators.net> added the comment:
>
> Benjamin,
>
> I ran the regrtest.py file with the -ucurses option and didn't get the error.
>
> However, I don't see how it is possible to send the -ucurses option
> through via the make file.

To enable all the options, you can use "make testall". Otherwise you
can give custom switches to regrtest.py with the TESTOPTS variable.
"make test TESTOPTS=-ucurses"
msg82655 - (view) Author: Steve Owens (steve@integrityintegrators.net) Date: 2009-02-24 02:36
I know that this issue is not valid, but I believe that it ought to be
searchable since I am sure I am not the last person to ask this question
and I don't think the knowledge is currently documented any where.
msg82656 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2009-02-24 02:45
On Mon, Feb 23, 2009 at 8:36 PM, Steve Owens <report@bugs.python.org> wrote:
>
> Steve Owens <steve@integrityintegrators.net> added the comment:
>
> I know that this issue is not valid, but I believe that it ought to be
> searchable since I am sure I am not the last person to ask this question
> and I don't think the knowledge is currently documented any where.

I added a note to the README in r69924. I hope that does the trick.
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49606
2009-02-24 02:45:55benjamin.petersonsetmessages: + msg82656
2009-02-24 02:36:29steve@integrityintegrators.netsetmessages: + msg82655
2009-02-24 02:11:23benjamin.petersonsetmessages: + msg82654
2009-02-24 02:02:40steve@integrityintegrators.netsetmessages: + msg82653
2009-02-24 00:56:29benjamin.petersonsetstatus: open -> closed
resolution: not a bug
messages: + msg82651
nosy: + benjamin.peterson
2009-02-24 00:48:34steve@integrityintegrators.netcreate