[issue4380] Deepcopy of functools.partial gives wierd exception

2009-12-20 Thread Florent Xicluna
Changes by Florent Xicluna : -- resolution: -> fixed stage: -> committed/rejected status: open -> closed ___ Python tracker ___ ___ P

[issue4380] Deepcopy of functools.partial gives wierd exception

2009-12-07 Thread Ezio Melotti
Changes by Ezio Melotti : -- nosy: +ezio.melotti ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyt

[issue4380] Deepcopy of functools.partial gives wierd exception

2009-12-03 Thread flox
flox added the comment: Already fixed on Python trunk (2.7). Fixed on branches 3.1 and 3.2, too. -- ___ Python tracker ___ ___ Python-

[issue4380] Deepcopy of functools.partial gives wierd exception

2009-11-25 Thread flox
flox added the comment: This issue is somewhat related to the same issue with pickle. See issue1398 for the explanation. -- nosy: +flox ___ Python tracker ___ ___

[issue4380] Deepcopy of functools.partial gives wierd exception

2008-11-21 Thread Benjamin Peterson
Changes by Benjamin Peterson <[EMAIL PROTECTED]>: -- priority: -> normal ___ Python tracker <[EMAIL PROTECTED]> ___ ___ Python-bugs-lis

[issue4380] Deepcopy of functools.partial gives wierd exception

2008-11-21 Thread Kevin Fitch
New submission from Kevin Fitch <[EMAIL PROTECTED]>: from functools import partial from copy import deepcopy p = partial("Hello world".replace, "world") p("mom") p2 = deepcopy(p) The output I get is: Hello mom Followed by: Traceback (most recent call last) /home/kfitch/ in () /