Hi, ALL:
I have a sample code as bellow:
#!/usr/bin/env python
class Hello:
def __init__(self):
print "Hello __init__"
@classmethod
def print_hello(self):
print "hello"
Hello.print_hello()
If I move "self" parameter of print_hello away, this code fragment won't
work
Hi, there:
I am new to python, and now I got a trouble:
I have an application named canola, it is written under python 2.5, and can
run normally under python 2.5
But when it comes under python 2.6, problem up, it says:
Traceback (most recent call last):
File "/usr/lib/python2.6/site-packages/