[issue45654] Freeze the runpy module.

2021-12-10 Thread Christian Heimes
Christian Heimes added the comment: New changeset 16638a4bdb802ae52d386a39d2dbef14de3fbc92 by Christian Heimes in branch 'main': bpo-45654: No need to freeze types (GH-30028) https://github.com/python/cpython/commit/16638a4bdb802ae52d386a39d2dbef14de3fbc92 --

[issue45654] Freeze the runpy module.

2021-12-10 Thread Christian Heimes
Christian Heimes added the comment: I noticed that the types module is only used for ModuleType. PR GH-30028 gets rid of 205 kB object code: 205K Python/deepfreeze/types.o -- ___ Python tracker

[issue45654] Freeze the runpy module.

2021-12-10 Thread Christian Heimes
Change by Christian Heimes : -- nosy: +christian.heimes nosy_count: 4.0 -> 5.0 pull_requests: +28253 pull_request: https://github.com/python/cpython/pull/30028 ___ Python tracker

[issue45654] Freeze the runpy module.

2021-12-09 Thread Guido van Rossum
Guido van Rossum added the comment: Thanks Kumar! -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue45654] Freeze the runpy module.

2021-12-09 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset 44b0e76f2a80c9a78242b7542b8b1218d244af07 by Kumar Aditya in branch 'main': bpo-45654: Freeze the runpy module and stuff it imports (GH-29903) https://github.com/python/cpython/commit/44b0e76f2a80c9a78242b7542b8b1218d244af07 -- nosy:

[issue45654] Freeze the runpy module.

2021-12-03 Thread Kumar Aditya
Change by Kumar Aditya : -- keywords: +patch nosy: +kumaraditya303 nosy_count: 2.0 -> 3.0 pull_requests: +28127 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/29903 ___ Python tracker

[issue45654] Freeze the runpy module.

2021-10-28 Thread Eric Snow
Eric Snow added the comment: (See https://bugs.python.org/issue45020#msg402118.) -- ___ Python tracker ___ ___ Python-bugs-list

[issue45654] Freeze the runpy module.

2021-10-28 Thread Eric Snow
New submission from Eric Snow : Currently we are freezing the modules that are imported during startup. However, if someone uses "python -m module" then the runtime imports the runpy module and uses it. Given that this case is quite common, runpy and its dependencies should be frozen.