Re: kwarg references

2007-04-26 Thread Steve Holden
Gabriel Genellina wrote: > En Tue, 24 Apr 2007 22:31:59 -0300, Calvin Spealman <[EMAIL PROTECTED]> > escribió: > >> In the internal API when a C function is called and passed a kwarg >> dictionary, is there any case where anything else has a reference to >> it? I checked with the following code

Re: kwarg references

2007-04-25 Thread Gabriel Genellina
En Tue, 24 Apr 2007 22:31:59 -0300, Calvin Spealman <[EMAIL PROTECTED]> escribió: > In the internal API when a C function is called and passed a kwarg > dictionary, is there any case where anything else has a reference to > it? I checked with the following code and it looks like even if you > ex

kwarg references

2007-04-24 Thread Calvin Spealman
In the internal API when a C function is called and passed a kwarg dictionary, is there any case where anything else has a reference to it? I checked with the following code and it looks like even if you explicitly pass a dictionary with **kwargs, it still copies the dictionary anyway. -- Read my