summaryrefslogtreecommitdiffstats
path: root/Lib/importlib/_bootstrap.py
diff options
context:
space:
mode:
authorMeador Inge <meadori@gmail.com>2011-12-15 04:53:13 (GMT)
committerMeador Inge <meadori@gmail.com>2011-12-15 04:53:13 (GMT)
commit96ff0840b68a9568d859a7bef2f59e851f811ae3 (patch)
tree9e808bed9b13b385a8fe23ca216dfbc54a217b06 /Lib/importlib/_bootstrap.py
parentc2f9874280006d0567797ba49e6575edcd9a56a3 (diff)
downloadcpython-96ff0840b68a9568d859a7bef2f59e851f811ae3.zip
cpython-96ff0840b68a9568d859a7bef2f59e851f811ae3.tar.gz
cpython-96ff0840b68a9568d859a7bef2f59e851f811ae3.tar.bz2
Issue #13593: updating the importlib utility decorators for __qualname__.
Diffstat (limited to 'Lib/importlib/_bootstrap.py')
-rw-r--r--Lib/importlib/_bootstrap.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/importlib/_bootstrap.py b/Lib/importlib/_bootstrap.py
index 25533fc..520c10a 100644
--- a/Lib/importlib/_bootstrap.py
+++ b/Lib/importlib/_bootstrap.py
@@ -111,7 +111,7 @@ def _write_atomic(path, data):
def _wrap(new, old):
"""Simple substitute for functools.wraps."""
- for replace in ['__module__', '__name__', '__doc__']:
+ for replace in ['__module__', '__name__', '__qualname__', '__doc__']:
setattr(new, replace, getattr(old, replace))
new.__dict__.update(old.__dict__)