diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2016-03-29 23:29:05 (GMT) |
---|---|---|
committer | Victor Stinner <victor.stinner@gmail.com> | 2016-03-29 23:29:05 (GMT) |
commit | b1511f789ea0565296cf9c64f30d2ab4e79b8615 (patch) | |
tree | 296cdcf6b8050e1f4b576a38a33b72fe4e3e59f9 /Misc | |
parent | 6e722bc13fbe019195e6e760abfb6c9444124b14 (diff) | |
download | cpython-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/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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. |