Re: [Python-Dev] PEP 362: Signature objects

2007-09-07 Thread Guido van Rossum
On 9/7/07, Brett Cannon <[EMAIL PROTECTED]> wrote: > On 9/7/07, Jim Jewett <[EMAIL PROTECTED]> wrote: > > > A Signature object has the following structure attributes: > > > > > * name : str > > > Name of the function. This is not fully qualified because > > > function objects for methods d

Re: [Python-Dev] PEP 362: Signature objects

2007-09-07 Thread Brett Cannon
On 9/7/07, Jim Jewett <[EMAIL PROTECTED]> wrote: > > A Signature object has the following structure attributes: > > > * name : str > > Name of the function. This is not fully qualified because > > function objects for methods do not know the class they are > > contained within. This m

[Python-Dev] PEP 362: Signature objects

2007-09-07 Thread Jim Jewett
Brett Cannon wrote: > A Signature object has the following structure attributes: > * name : str > Name of the function. This is not fully qualified because > function objects for methods do not know the class they are > contained within. This makes functions and methods > indist

[Python-Dev] PEP 362: Signature objects

2007-09-06 Thread Brett Cannon
Neal Becker over on python-3000 said that the Boost people could use this. Figured it was time to present it officially to the list to see if I can get it added for 2.6/3.0. The implementation in the sandbox works in both 2.6 and 3.0 out of the box (no 2to3 necessary) so feel free to play with it