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: Cleanup PyUnicode_AsUnicodeEscapeString
Type: enhancement Stage: resolved
Components: Interpreter Core, Unicode Versions: Python 3.7, Python 3.6
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: serhiy.storchaka Nosy List: ezio.melotti, python-dev, serhiy.storchaka, vstinner, xiang.zhang
Priority: normal Keywords: patch

Created on 2016-11-21 09:24 by xiang.zhang, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
PyUnicode_AsUnicodeEscapeString.patch xiang.zhang, 2016-11-21 09:24 review
Messages (4)
msg281337 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-11-21 09:24
PyUnicode_AsUnicodeEscapeString now still has some old comments and codes about the original "quotes" parameter of unicodeescape_string. Current implementation could get rid of them.
msg281341 - (view) Author: Serhiy Storchaka (serhiy.storchaka) * (Python committer) Date: 2016-11-21 09:44
LGTM. Thanks Xiang.
msg281342 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2016-11-21 09:47
New changeset 2d0ce3f4dfbd by Serhiy Storchaka in branch '3.6':
Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString().
https://hg.python.org/cpython/rev/2d0ce3f4dfbd

New changeset d656b93c5603 by Serhiy Storchaka in branch 'default':
Issue #28760: Clean up and fix comments in PyUnicode_AsUnicodeEscapeString().
https://hg.python.org/cpython/rev/d656b93c5603
msg281343 - (view) Author: Xiang Zhang (xiang.zhang) * (Python committer) Date: 2016-11-21 09:49
Thanks for your work, Serhiy. ;-)
History
Date User Action Args
2022-04-11 14:58:39adminsetgithub: 72946
2016-11-21 09:49:52xiang.zhangsetmessages: + msg281343
2016-11-21 09:47:54serhiy.storchakasetstatus: open -> closed
stage: commit review -> resolved
resolution: fixed
versions: - Python 3.5
2016-11-21 09:47:32python-devsetnosy: + python-dev
messages: + msg281342
2016-11-21 09:44:45serhiy.storchakasetmessages: + msg281341
stage: patch review -> commit review
2016-11-21 09:42:32serhiy.storchakasetassignee: serhiy.storchaka

nosy: + serhiy.storchaka
2016-11-21 09:30:53ezio.melottisetnosy: + ezio.melotti, vstinner
components: + Interpreter Core, Unicode
2016-11-21 09:24:14xiang.zhangcreate