[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-19 Thread Xiang Zhang
Changes by Xiang Zhang : -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___

[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 8f5ed2a38f64 by Xiang Zhang in branch '3.5': Issue #29009: Remove outdated doc of PyUnicode_RichCompare. https://hg.python.org/cpython/rev/8f5ed2a38f64 New changeset da958d01755a by Xiang Zhang in branch '3.6': Issue #29009: Merge 3.5.

[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-19 Thread STINNER Victor
STINNER Victor added the comment: doc-of-PyUnicode_RichCompare_v2.patch LGTM. -- ___ Python tracker ___ ___

[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: LGTM. -- assignee: docs@python -> xiang.zhang stage: patch review -> commit review ___ Python tracker ___

[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-18 Thread Xiang Zhang
Xiang Zhang added the comment: > This sentence also is in the header. Ohh, yes. Thanks Serhiy! -- Added file: http://bugs.python.org/file45961/doc-of-PyUnicode_RichCompare_v2.patch ___ Python tracker

[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: This sentence also is in the header. -- nosy: +serhiy.storchaka ___ Python tracker ___

[issue29009] Outdated part in the doc of PyUnicode_RichCompare

2016-12-18 Thread Xiang Zhang
New submission from Xiang Zhang: The sentence: "Note that Py_EQ and Py_NE comparisons can cause a UnicodeWarning in case the conversion of the arguments to Unicode fails with a UnicodeDecodeError." in the doc of PyUnicode_RichCompare is not true in 3.x. Proposed patch simply deletes it.