[issue2458] Allow Python code to change Py3k warning flag

2008-07-30 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: I guess this isn't going anywhere... -- resolution: -> rejected status: open -> closed versions: +Python 2.7 -Python 2.6 ___ Python tracker <[EMAIL PROTECTED]>

[issue2458] Allow Python code to change Py3k warning flag

2008-04-18 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: As suggested by Christian, this patch changes the method names to setpy3kwarn and getpy3kwarn. -- nosy: +tiran Added file: http://bugs.python.org/file10058/change_py3kwarning2.patch __ Tracker <[EMA

[issue2458] Allow Python code to change Py3k warning flag

2008-03-26 Thread Benjamin Peterson
Benjamin Peterson <[EMAIL PROTECTED]> added the comment: Raising priority so this is looked at before we release 2.6. :) -- priority: -> critical __ Tracker <[EMAIL PROTECTED]> __ ___

[issue2458] Allow Python code to change Py3k warning flag

2008-03-22 Thread Benjamin Peterson
New submission from Benjamin Peterson <[EMAIL PROTECTED]>: This patch removed sys.py3kwarning and adds sys.getpy3kwarn, sys.enablepy3kwarn, and sys.disablepy3kwarn with docs. I also changed the places in the Lib which used sys.py3kwarning. -- files: change_py3kwarning.patch keywords: pat