2013/10/9 Marco Beri
> Chi sa fa, chi non sa... ecc.
nun ce provà sempre a rubà la palla agli insegnanti di educazione
fisica
___
Python mailing list
Python@lists.python.it
http://lists.python.it/mailman/listinfo/python
On Wed, Oct 9, 2013 at 6:33 PM, Manlio Perillo wrote:
> E se io sono una certezza, tu che scrivi libri che sei, un dogma? :)
>
Solo uno che sa scrivere più o meno correttamente in italiano e che
rispetta (quasi sempre) le scadenze dell'editore :-)
Chi sa fa, chi non sa... ecc.
Ciao.
Marco.
On Wed, Oct 9, 2013 at 6:33 PM, Manlio Perillo wrote:
> On 09/10/2013 17:43, Marco Beri wrote:
> E se io sono una certezza
si
> tu che scrivi libri che sei, un dogma? :)
si
:)
--
Gian Mario Tagliaretti
GNOME Foundation member
gia...@gnome.org
On 09/10/2013 17:43, Marco Beri wrote:
On Wed, Oct 9, 2013 at 5:23 PM, Giovanni Porcari
mailto:giovanni.porc...@softwell.it>> wrote:
Grazie Manlio. Sei sempre una certezza :)
+1
E se io sono una certezza, tu che scrivi libri che sei, un dogma? :)
Ciao Manlio
_
On Wed, Oct 9, 2013 at 5:23 PM, Giovanni Porcari <
giovanni.porc...@softwell.it> wrote:
> Grazie Manlio. Sei sempre una certezza :)
>
+1
:-)
--
http://beri.it/ - Un blog
http://beri.it/i-miei-libri/ - Qualche libro
___
Python mailing list
Python@lis
> Il giorno 09/ott/2013, alle ore 17:07, Manlio Perillo
> ha scritto:
>
>> On 09/10/2013 16:26, Giovanni Porcari wrote:
>> Buongiorno a tutti
>>
>> [...]
>> class TestClassNewStyle(object):
>> def __init__(self):
>> self.store = dict()
>>
>> def __getattr__(self,name):
>>
On 09/10/2013 16:26, Giovanni Porcari wrote:
Buongiorno a tutti
[...]
class TestClassNewStyle(object):
def __init__(self):
self.store = dict()
def __getattr__(self,name):
print '__getattr__ :' ,name
if not hasattr(dict,name):
raise AttributeErro
Buongiorno a tutti
Dato il seguente codice :
class TestClassOldStyle():
def __init__(self):
self.store = dict()
def __getattr__(self,name):
print '__getattr__ :' ,name
if not hasattr(dict,name):
raise At