]> git.ipfire.org Git - thirdparty/Python/cpython.git/commit
bpo-37173: Show passed class in inspect.getfile error (GH-13861)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sat, 8 Jun 2019 15:27:06 +0000 (08:27 -0700)
committerGitHub <noreply@github.com>
Sat, 8 Jun 2019 15:27:06 +0000 (08:27 -0700)
commit51c9cc73cb8768a691688755af0a8b6b12cf712c
tree727b4f77cb5da601d67cd9a78bac242fad2c4778
parent10b4fd98142edef6ab7b034e10ae5c9551043999
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
(cherry picked from commit d407d2a7265f6102e51a1d62b3fd28b4f7a78d16)

Co-authored-by: Philipp A <flying-sheep@web.de>
Lib/inspect.py
Lib/test/test_inspect.py
Misc/NEWS.d/next/Library/2019-06-08-11-33-48.bpo-37173.0e_8gS.rst [new file with mode: 0644]