summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d/next/Core and Builtins/2021-10-01-09-21-02.bpo-21736.RI47BU.rst
diff options
context:
space:
mode:
Diffstat (limited to 'Misc/NEWS.d/next/Core and Builtins/2021-10-01-09-21-02.bpo-21736.RI47BU.rst')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2021-10-01-09-21-02.bpo-21736.RI47BU.rst9
1 files changed, 0 insertions, 9 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2021-10-01-09-21-02.bpo-21736.RI47BU.rst b/Misc/NEWS.d/next/Core and Builtins/2021-10-01-09-21-02.bpo-21736.RI47BU.rst
deleted file mode 100644
index 8396a49..0000000
--- a/Misc/NEWS.d/next/Core and Builtins/2021-10-01-09-21-02.bpo-21736.RI47BU.rst
+++ /dev/null
@@ -1,9 +0,0 @@
-Frozen stdlib modules now have ``__file__`` to the .py file they would
-otherwise be loaded from, if possible. For packages, ``__path__`` now has
-the correct entry instead of being an empty list, which allows unfrozen
-submodules to be imported. These are set only if the stdlib directory is
-known when the runtime is initialized. Note that the file at ``__file__``
-is not guaranteed to exist. None of this affects non-stdlib frozen modules
-nor, for now, frozen modules imported using
-``PyImport_ImportFrozenModule()``. Also, at the moment ``co_filename`` is
-not updated for the module.