Extending built-in language (Win 95)

Charlie Derr charlie at intelligenesis.net
Mon Apr 10 11:53:49 EDT 2000


~ > ? No, you use open() instead, which just returns an instance of a file
~ > object. In the xxmodule, xx_new is used to make new instances, which
~ > can be called from Python as xx.new().
~ 
~ I've added xxmodule to the lib and recompiled. Entering:
~ a = xx.new()
~ 
~ just gives a name error on xx.
~ 
~ Have I missed something?
~ 

I think you need to import your module:

import xxmodule

	or

from xxmodule import *

~ 
~ (thanks for helping)
~ 

you're welcome (if it's the right answer :-] )

~ mark.
~ 
~ -- 
~ http://www.python.org/mailman/listinfo/python-list
~ 




More information about the Python-list mailing list