summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-06-16 00:19:47 (GMT)
committerAlexander Belopolsky <alexander.belopolsky@gmail.com>2012-06-16 00:19:47 (GMT)
commit0831382d69890eeab58f43588887058a52a1f4b5 (patch)
treef749634dbfbc248dec21b74d676f28c3b23a605e /Misc
parentea0b8239401123fa7f41c74f6fc9ded1cf74088a (diff)
downloadcpython-0831382d69890eeab58f43588887058a52a1f4b5.zip
cpython-0831382d69890eeab58f43588887058a52a1f4b5.tar.gz
cpython-0831382d69890eeab58f43588887058a52a1f4b5.tar.bz2
Issue #15006: Allow equality comparison between naive and aware time
or datetime objects.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS5
1 files changed, 2 insertions, 3 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9e7df25..7e20d1b 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -24,9 +24,8 @@ Core and Builtins
Library
-------
-- Issue #14938: importlib.abc.SourceLoader.is_package() will not consider a
- module whose name ends in '__init__' a package (e.g. importing pkg.__init__
- directly should be considered a module, not a package).
+- Issue #15006: Allow equality comparison between naive and aware
+ time or datetime objects.
- Issue #14982: Document that pkgutil's iteration functions require the
non-standard iter_modules() method to be defined by an importer (something