Given the following code...

#!/usr/bin/python

class cgraph:
    def printme(self):
        print "hello\n"

x = cgraph()
x.printme()


Does the function print() exist in the cgraph namespace or the
printme() one?
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to