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: Compiler warning in unicodeobject.c
Type: compile error Stage: patch review
Components: Interpreter Core Versions: Python 3.1
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: ezio.melotti, hagen, vstinner
Priority: normal Keywords: patch

Created on 2009-06-28 03:57 by hagen, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
warning.patch hagen, 2009-06-28 03:57
Messages (4)
msg89764 - (view) Author: Hagen Fürstenau (hagen) Date: 2009-06-28 03:57
Compiling --with-wide-unicode there's a warning that encodeUCS4 is
defined, but not used. A trivial patch for this is attached.
msg97876 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2010-01-16 13:13
r76197 fixed the warning (Nov 10 2009, 2 months ago).
msg101529 - (view) Author: Hagen Fürstenau (hagen) Date: 2010-03-22 20:01
Apparently this was never backported to 3.1.
msg101572 - (view) Author: STINNER Victor (vstinner) * (Python committer) Date: 2010-03-23 11:43
> Apparently this was never backported to 3.1.

done: r79335 (py3k).
History
Date User Action Args
2022-04-11 14:56:50adminsetgithub: 50601
2010-03-23 11:43:43vstinnersetmessages: + msg101572
2010-03-22 20:01:07hagensetmessages: + msg101529
2010-01-16 13:13:38vstinnersetstatus: open -> closed

nosy: + vstinner
messages: + msg97876

resolution: fixed
2010-01-15 11:55:03ezio.melottisetnosy: + ezio.melotti
priority: normal
components: + Interpreter Core
type: compile error
stage: patch review
2009-06-28 03:57:54hagencreate