google / grumpy

Grumpy is a Python to Go source code transcompiler and runtime.
Apache License 2.0
10.54k stars 648 forks source link

Implement __getattribuate__ #393

Open nagayev opened 6 years ago

nagayev commented 6 years ago

Hi. I coundn't implement array module, 'cause there's no magic methods getattribute and setattribuate

alanjds commented 6 years ago

I had bumped on this too. But for now there is __getattr__ and __setattr__. Does it suit your needs?

nagayev commented 6 years ago

@alanjds yes