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: move intern to sys, make intern() optionally warn
Type: enhancement Stage: test needed
Components: Interpreter Core Versions: Python 3.2
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: nnorwitz Nosy List: anthonybaxter, nnorwitz
Priority: normal Keywords: patch

Created on 2007-05-31 06:29 by anthonybaxter, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
intern-to-sys.patch anthonybaxter, 2007-05-31 06:29
Messages (1)
msg52705 - (view) Author: Anthony Baxter (anthonybaxter) (Python triager) Date: 2007-05-31 06:29
This patch moves intern() to sys.intern(). intern() will still work - it optionally issues a warning (based on the 3.x compat flag) then calls across to sys.intern()
History
Date User Action Args
2022-04-11 14:56:24adminsetgithub: 45017
2010-07-10 15:59:36benjamin.petersonsetstatus: open -> closed
resolution: fixed
2010-07-10 09:51:44BreamoreBoysetversions: + Python 3.2, - Python 2.7
2009-03-30 16:50:02ajaksu2setstage: test needed
type: enhancement
versions: + Python 2.7, - Python 2.6
2007-05-31 06:29:11anthonybaxtercreate