Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   Curses module. (http://www.velocityreviews.com/forums/t319730-curses-module.html)

Alex 07-15-2003 11:03 PM

Curses module.
 
Hello all,

I'm trying to learn Python, in particular the curses module. My system
is running Slackware 9.0 and the verion of Python that comes installed
with Slackware 9.0 is Python 2.2.2.

I've been trying to access the curses.wrapper module without any
success. I know that the wrapper exists in /usr/lib/python2.2/curses yet
any reference that I make to it is rebuffed by the interpreter.

Here's the python script I'm trying to run:

Code:


#!/usr/bin/python
#
# My first attempts at writing a curses interface using python

import curses

def newWindow():
        begin_x = 20 ; begin_y = 7
        height = 5 ; width = 40
        win = curses.newwin(height, width, begin_y, begin_x)
        return

# Pass the function to the curses wrapper

curses.wrapper(newWindow())

This is the error message that I get when I try to run the script from
the CLI:

Traceback (most recent call last):
File "./curses3.py", line 15, in ?
curses.wrapper(newWindow())
AttributeError: 'module' object has no attribute 'wrapper'

Any ideas as to what I could be doing wrong?


Alex the Python Newbie


Jp Calderone 07-16-2003 12:01 AM

Re: Curses module.
 
On Tue, Jul 15, 2003 at 07:03:33PM -0400, Alex wrote:
> Hello all,
>
> I'm trying to learn Python, in particular the curses module. My system
> is running Slackware 9.0 and the verion of Python that comes installed
> with Slackware 9.0 is Python 2.2.2.
>
> I've been trying to access the curses.wrapper module without any
> success. I know that the wrapper exists in /usr/lib/python2.2/curses yet
> any reference that I make to it is rebuffed by the interpreter.
>
> Here's the python script I'm trying to run:
>
> [snip apparently correct code]
>
> This is the error message that I get when I try to run the script from
> the CLI:
>
> Traceback (most recent call last):
> File "./curses3.py", line 15, in ?
> curses.wrapper(newWindow())
> AttributeError: 'module' object has no attribute 'wrapper'
>
> Any ideas as to what I could be doing wrong?
>


Do you, perhaps, have a file named "curses.py" in your current directory?
If so, "import curses" will load this, and not the stdlib module.

You could also try printing "curses.__file__" to make sure the module is
really coming from where you believe it is.

Jp


Alex 07-17-2003 07:25 AM

Re: Curses module.
 
You were both correct.

I simply had to get rid on the curses.py program (my first test program)
and everything worked fine.

Thanks again for the help. I can get down to some serious
learning/hair-pulling frustration :)


Alex


All times are GMT. The time now is 04:34 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57