summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2016-03-29 23:29:05 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2016-03-29 23:29:05 (GMT)
commitb1511f789ea0565296cf9c64f30d2ab4e79b8615 (patch)
tree296cdcf6b8050e1f4b576a38a33b72fe4e3e59f9 /Misc
parent6e722bc13fbe019195e6e760abfb6c9444124b14 (diff)
downloadcpython-b1511f789ea0565296cf9c64f30d2ab4e79b8615.zip
cpython-b1511f789ea0565296cf9c64f30d2ab4e79b8615.tar.gz
cpython-b1511f789ea0565296cf9c64f30d2ab4e79b8615.tar.bz2
doctest now supports packages
Issue #26641: doctest.DocFileTest and doctest.testfile() now support packages (module splitted into multiple directories) for the package parameter.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 3923af1..73c355d 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -232,6 +232,10 @@ Core and Builtins
Library
-------
+- Issue #26641: doctest.DocFileTest and doctest.testfile() now support
+ packages (module splitted into multiple directories) for the package
+ parameter.
+
- Issue #25195: Fix a regression in mock.MagicMock. _Call is a subclass of
tuple (changeset 3603bae63c13 only works for classes) so we need to
implement __ne__ ourselves. Patch by Andrew Plummer.