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: Removing .decode calls from Lib/calendar.py
Type: Stage:
Components: Library (Lib) Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: georg.brandl, gpolo
Priority: normal Keywords: patch

Created on 2008-06-07 19:40 by gpolo, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
no_strdecode.diff gpolo, 2008-06-07 19:40
Messages (2)
msg67815 - (view) Author: Guilherme Polo (gpolo) * (Python committer) Date: 2008-06-07 19:39
I've removed calls to s.decode found at Lib/calendar.py as it is no
longer needed in py3k and doesn't even work (since .decode is gone).
msg67827 - (view) Author: Georg Brandl (georg.brandl) * (Python committer) Date: 2008-06-08 08:40
Thanks, committed in r64033.
History
Date User Action Args
2022-04-11 14:56:35adminsetgithub: 47309
2008-06-08 08:40:21georg.brandlsetstatus: open -> closed
resolution: fixed
messages: + msg67827
nosy: + georg.brandl
2008-06-07 19:43:15gpolosettitle: Removing s.decode at Lib/calendar.py -> Removing .decode calls from Lib/calendar.py
2008-06-07 19:40:02gpolocreate