How can I keep the class private and have the following work:

[code]
class __internal_class(object):
    @staticmethod
    def meth1(s):
        print "meth1:", s

    @staticmethod
    def meth2(s):
        print "meth2:",
        __internal_class.meth1(s)

x = __internal_class()

x.meth2('sdf')
[/code]

Thanks
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to