Archives

The default python behaviour when calling a class method that does not exist is that you get an exception:

>>> class A(object):
... pass
...
>>> a = A()
>>> a.getBlablabla()
Traceback (most recent call last):
File "", line 1, in ?
AttributeError: 'A' object has no attribute 'getBlablabla'

» Read More

After more than a year without blogging I'm back. This is a new blog about python and of course about many frameworks like zope, turbogears, django and others and also about Plone.

» Read More