hello,
is there a way, in python, to create a splash window and when the
program has completed disappears by sending a msg to it? (I tried
creating two gtk windows but gtk_main doesn't seem to return unless it
gets closed.)
tia
Ron
--
http://mail.python.org/mailman/listinfo/python-list
On 12/30/2009 9:10 AM, inhahe wrote:
Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
import inspect
def a(b=1): pass
inspect.getargvalues(a)
Traceback (most recent call last):
On Tue, Dec 29, 2009 at 6:38 PM, Irmen de Jong wrote:
> On 29-12-2009 23:22, inhahe wrote:
>
> inspect.getargvalues is used on frames, not on regular code objects.
> Maybe you were looking for inspect.getargspec?
>
That explains it!
I knew I'd done this before, I was just looking at the wrong fun
On 29-12-2009 23:22, inhahe wrote:
On Tue, Dec 29, 2009 at 5:11 PM, inhahe wrote:
On Tue, Dec 29, 2009 at 5:10 PM, inhahe wrote:
So i'm guessing that the attribute has been changed from func_code to
f_code but the inspect module wasn't updated to reflect that.
er i mean from f_code to fun
On 12/29/09, inhahe wrote:
> Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)]
> on
> win32
> Type "help", "copyright", "credits" or "license" for more information.
import inspect
def a(b=1): pass
> ...
inspect.getargvalues(a)
> Traceback (most recent call
On Tue, Dec 29, 2009 at 5:11 PM, inhahe wrote:
> On Tue, Dec 29, 2009 at 5:10 PM, inhahe wrote:
>>
>> So i'm guessing that the attribute has been changed from func_code to
>> f_code but the inspect module wasn't updated to reflect that.
>>
>
> er i mean from f_code to func_code
>
f_locals doesn'
On Tue, Dec 29, 2009 at 5:10 PM, inhahe wrote:
>
> So i'm guessing that the attribute has been changed from func_code to
> f_code but the inspect module wasn't updated to reflect that.
>
er i mean from f_code to func_code
--
http://mail.python.org/mailman/listinfo/python-list
Python 2.6.4 (r264:75708, Oct 26 2009, 08:23:19) [MSC v.1500 32 bit (Intel)] on
win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import inspect
>>> def a(b=1): pass
...
>>> inspect.getargvalues(a)
Traceback (most recent call last):
File "", line 1, in
File "C:\P