[issue3445] functools.update_wrapper bug

2008-07-25 Thread Antoine d'Otreppe
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

[issue3445] Ignore missing attributes in functools.update_wrapper

2008-07-27 Thread Antoine d'Otreppe
Antoine d'Otreppe <[EMAIL PROTECTED]> added the comment: Thank you for considering this report :) ___ Python tracker <[EMAIL PROTECTED]> <http://bugs.

[issue4101] Missing type in "types" module

2008-10-10 Thread Antoine d'Otreppe
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

[issue4104] Namespace inconsistency

2008-10-10 Thread Antoine d'Otreppe
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