We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
This definition works:
class X(object): def __init__(self, x): self.x = x def __str__(self): return "my name is %s" % self.x
This doesn't:
Both are accepted by C Python.