diff options
author | Andrew Kuchling <amk@amk.ca> | 2013-11-12 15:25:15 (GMT) |
---|---|---|
committer | Andrew Kuchling <amk@amk.ca> | 2013-11-12 15:25:15 (GMT) |
commit | 98a0d063a12c94ac9db6b1076cddad40a2fbd82b (patch) | |
tree | 7bed3be37161293189c521c7a369e3a6bb943a53 /Lib/xml | |
parent | 587e970be60ec14c017d5bfef93275f6a6c8dbac (diff) | |
download | cpython-98a0d063a12c94ac9db6b1076cddad40a2fbd82b.zip cpython-98a0d063a12c94ac9db6b1076cddad40a2fbd82b.tar.gz cpython-98a0d063a12c94ac9db6b1076cddad40a2fbd82b.tar.bz2 |
Closes #12828: add docstring text noting this is an internal-only module
Diffstat (limited to 'Lib/xml')
-rw-r--r-- | Lib/xml/dom/minicompat.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Lib/xml/dom/minicompat.py b/Lib/xml/dom/minicompat.py index 62725c6..1244500 100644 --- a/Lib/xml/dom/minicompat.py +++ b/Lib/xml/dom/minicompat.py @@ -1,4 +1,8 @@ -"""Python version compatibility support for minidom.""" +"""Python version compatibility support for minidom. + +This module contains internal implementation details and +should not be imported; use xml.dom.minidom instead. +""" # This module should only be imported using "import *". # |