New submission from Antoine d'Otreppe <[EMAIL PROTECTED]>:
When trying to do something like
"functools.update_wrapper(myWrapper, str.split)"
I got this error message:
Traceback (most recent call last):
File "", line 1, in
File "Aspyct.py", line 175
Antoine d'Otreppe <[EMAIL PROTECTED]> added the comment:
Thank you for considering this report :)
___
Python tracker <[EMAIL PROTECTED]>
<http://bugs.
New submission from Antoine d'Otreppe <[EMAIL PROTECTED]>:
Hello
There's a type missing in the standard "types" modules (or I didn't find
it, in what case I apologize for this useless posting)
Consider this code:
---
WrapperDescriptorType = None
class Meta(typ
New submission from Antoine d'Otreppe <[EMAIL PROTECTED]>:
Hello
See the following code and comments for explanation ;) (Try it with
interactive mode)
---
>>> class A:
... class B:
... pass
>>> A
>>> A.B
>>> B
NameError: B is not