This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: 2to3 fixer for gettext's .ugettext
Type: Stage: resolved
Components: 2to3 (2.x to 3.x conversion tool) Versions: Python 3.1, Python 3.2, Python 2.7
process
Status: closed Resolution: wont fix
Dependencies: Superseder: Close 2to3 issues and list them here
View: 45544
Assigned To: Nosy List: barry, benjamin.peterson, iritkatriel
Priority: normal Keywords:

Created on 2010-04-23 14:48 by barry, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
fix_ugettext.py barry, 2010-04-23 14:48
Messages (5)
msg104015 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2010-04-23 14:48
gettext module in Python 3 does not have a .ugettext method because everything's already unicodes.  Here's a fixer for that.
msg104052 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2010-04-23 20:53
You should follow the model of fix_getcwdu, which handles more cases.
msg190084 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2013-05-26 12:37
Barry, would you like to follow up on this?
msg190218 - (view) Author: Barry A. Warsaw (barry) * (Python committer) Date: 2013-05-28 15:20
On May 26, 2013, at 12:37 PM, Mark Lawrence wrote:

>Barry, would you like to follow up on this?

My personal interest in this has waned, since I try to avoid 2to3 like the
plague.  ;)
msg380567 - (view) Author: Irit Katriel (iritkatriel) * (Python committer) Date: 2020-11-09 00:06
Should we close this as won't fix?
History
Date User Action Args
2022-04-11 14:57:00adminsetgithub: 52754
2021-10-20 23:32:56iritkatrielsetstatus: pending -> closed
superseder: Close 2to3 issues and list them here
resolution: wont fix
stage: resolved
2020-11-09 00:06:51iritkatrielsetstatus: open -> pending
nosy: + iritkatriel
messages: + msg380567

2014-02-03 17:09:36BreamoreBoysetnosy: - BreamoreBoy
2013-05-28 15:20:38barrysetmessages: + msg190218
2013-05-26 12:37:24BreamoreBoysetnosy: + BreamoreBoy
messages: + msg190084
2010-04-23 20:53:41benjamin.petersonsetnosy: + benjamin.peterson
messages: + msg104052
2010-04-23 14:48:04barrycreate