summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorINADA Naoki <methane@users.noreply.github.com>2018-11-29 11:01:27 (GMT)
committerGitHub <noreply@github.com>2018-11-29 11:01:27 (GMT)
commit82daa60defbd6497efdaa6c1132ecc8563122ed5 (patch)
tree605a888ef029f47e1873f2184a06b1628bb4adff /Misc
parent9fbcfc08e5814d7aa9287740187e461425a99f67 (diff)
downloadcpython-82daa60defbd6497efdaa6c1132ecc8563122ed5.zip
cpython-82daa60defbd6497efdaa6c1132ecc8563122ed5.tar.gz
cpython-82daa60defbd6497efdaa6c1132ecc8563122ed5.tar.bz2
bpo-30167: Remove __cached__ from __main__ when removing __file__ (GH-7415)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2018-06-05-15-49-02.bpo-30167.e956hA.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2018-06-05-15-49-02.bpo-30167.e956hA.rst b/Misc/NEWS.d/next/Core and Builtins/2018-06-05-15-49-02.bpo-30167.e956hA.rst
new file mode 100644
index 0000000..41bdec8
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2018-06-05-15-49-02.bpo-30167.e956hA.rst
@@ -0,0 +1,2 @@
+``PyRun_SimpleFileExFlags`` removes ``__cached__`` from module in addition
+to ``__file__``.