ruby instance variable in python

David Palao dpalao.python at gmail.com
Mon Oct 6 06:45:40 EDT 2014


Hello,
If you explain what the ruby code does, I think much more people will
be able to help you. Don't forget, this is a Python list. Not
everybody knows Ruby here.

Best

2014-10-06 12:06 GMT+02:00 roro codeath <rorocodeath at gmail.com>:
> in ruby:
>
> module M
> def ins_var
> @ins_var ||= nil
> end
>
> def m
> @ins_var = 'val'
> end
>
> def m2
> m
> ins_var # => 'val'
> end
> end
>
> in py:
>
> # m.py
>
> # how to def ins_var
>
> def m:
>     # how to set ins_var
>
> def m2:
>     m()
>     # how to get ins var
>
> --
> https://mail.python.org/mailman/listinfo/python-list
>



More information about the Python-list mailing list