diff options
author | Martin Panter <vadmium+py@gmail.com> | 2015-09-23 05:28:13 (GMT) |
---|---|---|
committer | Martin Panter <vadmium+py@gmail.com> | 2015-09-23 05:28:13 (GMT) |
commit | aa0da864b874afb8c1cbad5614a6242349f0fe21 (patch) | |
tree | 27316fe4d9b2fd96bf04cd28cff4f8ed3ef8525a /Misc | |
parent | a0ae789fd4ba403be865a71aefa5dc7c4c50c502 (diff) | |
download | cpython-aa0da864b874afb8c1cbad5614a6242349f0fe21.zip cpython-aa0da864b874afb8c1cbad5614a6242349f0fe21.tar.gz cpython-aa0da864b874afb8c1cbad5614a6242349f0fe21.tar.bz2 |
Issue #12067: Rewrite Comparisons section in the language reference
Some of the details of comparing mixed types were incorrect or ambiguous.
NotImplemented is only relevant at a lower level than the Expressions
chapter. Added details of comparing range() objects, and default behaviour
and consistency suggestions for user-defined classes. Patch from Andy Maier.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -518,6 +518,13 @@ C API Documentation ------------- +- Issue #12067: Rewrite Comparisons section in the Expressions chapter of the + language reference. Some of the details of comparing mixed types were + incorrect or ambiguous. NotImplemented is only relevant at a lower level + than the Expressions chapter. Added details of comparing range() objects, + and default behaviour and consistency suggestions for user-defined classes. + Patch from Andy Maier. + - Issue #24952: Clarify the default size argument of stack_size() in the "threading" and "_thread" modules. Patch from Mattip. |