Staging
v0.5.1
https://github.com/python/cpython
Revision ec4343c3b4c0e0a7500122fac616e6488c0ab842 authored by Miss Islington (bot) on 11 June 2018, 01:21:35 UTC, committed by Ned Deily on 11 June 2018, 01:21:35 UTC
Before Python 3.6, os.path.abspath(None) used to report an AttributeError which was properly caught inside site.abs_paths, making it ignore __main__, one of sys.modules, which has __file__ and __cached__ set to None. With 3.6, os.path.abspath(None) raises TypeError instead which site.abs_path was not expecting.  This resulted in an uncaught exception if a user had PYTHONSTARTUP set and the application called site.main() which a number of third-party programs do.
(cherry picked from commit 2487f30d5529948ace26559e274d7cac6abcd1a8)

Co-authored-by: Steve Weber <steverweber@gmail.com>
1 parent 037e912
History
Tip revision: ec4343c3b4c0e0a7500122fac616e6488c0ab842 authored by Miss Islington (bot) on 11 June 2018, 01:21:35 UTC
bpo-30167: Prevent site.main() exception if PYTHONSTARTUP is set. (GH-6731) (GH-7606)
Tip revision: ec4343c
File Mode Size
Grammar -rw-r--r-- 6.3 KB

back to top