diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-04-14 15:43:00 -0500 |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-04-14 15:43:00 -0500 |
commit | 50db6acc9b13188ea557070f63ca428eaf7cfc86 (patch) | |
tree | 773531c49f0a64e00cddeb50eb76576481e8aca2 /Lib/imp.py | |
parent | 5be7f1513d3e48ec03b0b95aa33f25991f12308e (diff) | |
download | cpython-git-50db6acc9b13188ea557070f63ca428eaf7cfc86.tar.gz |
Issue #23956: Fix typo in imp.py docstring.
Patch by Jacinda Shelly.
Diffstat (limited to 'Lib/imp.py')
-rw-r--r-- | Lib/imp.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/imp.py b/Lib/imp.py index c8449c6155..c922e921b5 100644 --- a/Lib/imp.py +++ b/Lib/imp.py @@ -130,7 +130,7 @@ class NullImporter: class _HackedGetData: - """Compatibiilty support for 'file' arguments of various load_*() + """Compatibility support for 'file' arguments of various load_*() functions.""" def __init__(self, fullname, path, file=None): |