[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Xiang Zhang
Xiang Zhang added the comment: Thanks for your work, Serhiy. ;-) -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Roundup Robot
Roundup Robot added the comment: 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

[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed versions: -Python 3.5 ___ Python tracker ___ _

[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. Thanks Xiang. -- stage: patch review -> commit review ___ Python tracker ___ ___ Python-bugs

[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Serhiy Storchaka
Changes by Serhiy Storchaka : -- assignee: -> serhiy.storchaka nosy: +serhiy.storchaka ___ Python tracker ___ ___ Python-bugs-list ma

[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Ezio Melotti
Changes by Ezio Melotti : -- components: +Interpreter Core, Unicode nosy: +ezio.melotti, haypo ___ Python tracker ___ ___ Python-bugs-

[issue28760] Cleanup PyUnicode_AsUnicodeEscapeString

2016-11-21 Thread Xiang Zhang
New submission from Xiang Zhang: 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. -- files: PyUnicode_AsUnicodeEscapeString.patch keywords: patch messag