diff options
author | Raymond Hettinger <python@rcn.com> | 2014-05-26 07:43:27 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2014-05-26 07:43:27 (GMT) |
commit | dea46ec9654a6412e74a6f8dfbdf97ff97516670 (patch) | |
tree | 6e157f543c738ecdf463a53afde142cb007a660e /Misc | |
parent | dd5e53a086fcabc84ee1ac96b98057437863973a (diff) | |
download | cpython-dea46ec9654a6412e74a6f8dfbdf97ff97516670.zip cpython-dea46ec9654a6412e74a6f8dfbdf97ff97516670.tar.gz cpython-dea46ec9654a6412e74a6f8dfbdf97ff97516670.tar.bz2 |
Issue #21481: Teach argparse equality tests to return NotImplemented when comparing to unknown types.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -24,6 +24,9 @@ Library - Issue #14710: pkgutil.find_loader() no longer raises an exception when a module doesn't exist. +- Issue #21481: Argparse equality and inequality tests now return + NotImplemented when comparing to an unknown type. + - Issue #8743: Fix interoperability between set objects and the collections.Set() abstract base class. |