diff options
author | Xiang Zhang <angwerzx@126.com> | 2016-12-19 10:35:14 (GMT) |
---|---|---|
committer | Xiang Zhang <angwerzx@126.com> | 2016-12-19 10:35:14 (GMT) |
commit | bfbc29cb8f5797f239a6ad8944edfea4e153cb75 (patch) | |
tree | 62fa9de305e555053b0fbd1f8390290b7e4a6472 /Include/unicodeobject.h | |
parent | c1ee488962f0a20c2814b14a4c29d6082dd38add (diff) | |
download | cpython-bfbc29cb8f5797f239a6ad8944edfea4e153cb75.zip cpython-bfbc29cb8f5797f239a6ad8944edfea4e153cb75.tar.gz cpython-bfbc29cb8f5797f239a6ad8944edfea4e153cb75.tar.bz2 |
Issue #29009: Remove outdated doc of PyUnicode_RichCompare.
Diffstat (limited to 'Include/unicodeobject.h')
-rw-r--r-- | Include/unicodeobject.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/Include/unicodeobject.h b/Include/unicodeobject.h index 90f2b72..9308a6a 100644 --- a/Include/unicodeobject.h +++ b/Include/unicodeobject.h @@ -2047,10 +2047,6 @@ PyAPI_FUNC(int) _PyUnicode_EqualToASCIIString( - Py_True or Py_False for successful comparisons - Py_NotImplemented in case the type combination is unknown - 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. - Possible values for op: Py_GT, Py_GE, Py_EQ, Py_NE, Py_LT, Py_LE |