[issue1748] contextlib.contextmanager does not use functools.wraps

2008-04-30 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: Done in r62605. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> __ __

[issue1748] contextlib.contextmanager does not use functools.wraps

2008-04-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Can this be fixed? -- nosy: +benjamin.peterson __ Tracker <[EMAIL PROTECTED]> __ ___ Py

[issue1748] contextlib.contextmanager does not use functools.wraps

2008-01-07 Thread Georg Brandl
Changes by Georg Brandl: -- priority: -> low type: -> behavior __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscrib

[issue1748] contextlib.contextmanager does not use functools.wraps

2008-01-06 Thread Georg Brandl
Changes by Georg Brandl: -- assignee: -> ncoghlan nosy: +ncoghlan __ Tracker <[EMAIL PROTECTED]> __ ___ Python-bugs-list mailing list Unsubscr

[issue1748] contextlib.contextmanager does not use functools.wraps

2008-01-06 Thread Antoine Pitrou
New submission from Antoine Pitrou: The contextmanager function should call functools.wraps instead of having its own attribute copying code. Just something I noticed while reading the source. -- components: Library (Lib) messages: 59413 nosy: pitrou severity: minor status: open title: c