Re: what are Python equivalent to MATLAB persistent or C++ static?

2007-03-15 Thread sturlamolden
On Mar 15, 8:09 am, "dmitrey" <[EMAIL PROTECTED]> wrote: > Thank you in advance, > Dmitrey First, "static" can mean at least three different things in C++: static int myvar1; void foobar() { static int myvar2; } class foobar { static int myvar3; } I assume you are thinking about the seco

Re: what are Python equivalent to MATLAB persistent or C++ static?

2007-03-15 Thread [EMAIL PROTECTED]
Marc 'BlackJack' Rintsch wrote: > In <[EMAIL PROTECTED]>, dmitrey wrote: > > > Thank you in advance, > > For what? Hint: Don't "hide" the question in the subject line. > > I don't know MATLAB's `persistent` but I know that ``static`` in C++ can > be used in different places with different meanings

Re: what are Python equivalent to MATLAB persistent or C++ static?

2007-03-15 Thread Marc 'BlackJack' Rintsch
In <[EMAIL PROTECTED]>, dmitrey wrote: > Thank you in advance, For what? Hint: Don't "hide" the question in the subject line. I don't know MATLAB's `persistent` but I know that ``static`` in C++ can be used in different places with different meanings. It seems you are asking questions how to t

what are Python equivalent to MATLAB persistent or C++ static?

2007-03-14 Thread dmitrey
Thank you in advance, Dmitrey -- http://mail.python.org/mailman/listinfo/python-list