summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorPhilipp A <flying-sheep@web.de>2019-06-08 12:05:46 (GMT)
committerMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2019-06-08 12:05:46 (GMT)
commitd407d2a7265f6102e51a1d62b3fd28b4f7a78d16 (patch)
tree6e52402cf0cdff805922a75e13822d54a0acb3f0 /Misc
parent65e5860fcc8ffe66f3c325d5484112f3b6540e8c (diff)
downloadcpython-d407d2a7265f6102e51a1d62b3fd28b4f7a78d16.zip
cpython-d407d2a7265f6102e51a1d62b3fd28b4f7a78d16.tar.gz
cpython-d407d2a7265f6102e51a1d62b3fd28b4f7a78d16.tar.bz2
bpo-37173: Show passed class in inspect.getfile error (GH-13861)
Currently, inspect.getfile(str) will report nonsense: ```pytb >>> inspect.getfile(str) TypeError: <module 'builtins' (built-in)> is a built-in class ``` This fixes that https://bugs.python.org/issue37173
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Library/2019-06-08-11-33-48.bpo-37173.0e_8gS.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2019-06-08-11-33-48.bpo-37173.0e_8gS.rst b/Misc/NEWS.d/next/Library/2019-06-08-11-33-48.bpo-37173.0e_8gS.rst
new file mode 100644
index 0000000..e996f97
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2019-06-08-11-33-48.bpo-37173.0e_8gS.rst
@@ -0,0 +1 @@
+The exception message for ``inspect.getfile()`` now correctly reports the passed class rather than the builtins module. \ No newline at end of file