[issue45019] Freezing modules has manual steps but could be automated.

2021-11-26 Thread Guido van Rossum
Guido van Rossum added the comment: New changeset b0b10e146b1cbf9c5dfa44af116a2eeb0f210e8b by Kumar Aditya in branch 'main': bpo-45019: Cleanup module freezing and deepfreeze (#29772) https://github.com/python/cpython/commit/b0b10e146b1cbf9c5dfa44af116a2eeb0f210e8b -- _

[issue45019] Freezing modules has manual steps but could be automated.

2021-11-25 Thread Oleg Iarygin
Oleg Iarygin added the comment: If a directory is renamed anyway, maybe `deepfrozen_modules` is better? `deepfreeze_modules` looks like "modules that are part of deepfreeze tool itself". Also it rhymes with `frozen_modules`. -- ___ Python tracker

[issue45019] Freezing modules has manual steps but could be automated.

2021-11-25 Thread Kumar Aditya
Change by Kumar Aditya : -- nosy: +kumaraditya303 nosy_count: 6.0 -> 7.0 pull_requests: +28009 pull_request: https://github.com/python/cpython/pull/29772 ___ Python tracker ___

[issue45019] Freezing modules has manual steps but could be automated.

2021-11-24 Thread Oleg Iarygin
Change by Oleg Iarygin : -- nosy: +arhadthedev nosy_count: 5.0 -> 6.0 pull_requests: +27981 pull_request: https://github.com/python/cpython/pull/29744 ___ Python tracker ___ __

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-15 Thread Eric Snow
Eric Snow added the comment: New changeset 3814e2036d96e2b6c69afce61926bb0a2a34d2d9 by Eric Snow in branch 'main': bpo-45019: Clean up the frozen __hello__ module. (gh-28374) https://github.com/python/cpython/commit/3814e2036d96e2b6c69afce61926bb0a2a34d2d9 -- __

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-15 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +26788 pull_request: https://github.com/python/cpython/pull/28374 ___ Python tracker ___ ___

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-15 Thread Eric Snow
Eric Snow added the comment: New changeset 4b30aaa0c9dc4da956199dbd48af9c06089cb271 by Eric Snow in branch 'main': bpo-45019: Silence a warning in test_ctypes. (gh-28362) https://github.com/python/cpython/commit/4b30aaa0c9dc4da956199dbd48af9c06089cb271 -- __

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-15 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +26776 pull_request: https://github.com/python/cpython/pull/28362 ___ Python tracker ___ ___

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-15 Thread Eric Snow
Eric Snow added the comment: On Wed, Sep 15, 2021 at 7:51 AM Karthikeyan Singaravelan wrote: > The PR 28319 seems to have introduced a new deprecation warning in tests : I'll fix that. -- ___ Python tracker __

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-15 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: The PR 28319 seems to have introduced a new deprecation warning in tests : 0:00:13 load avg: 2.82 [ 98/427] test_ctypes passed Hello world! /home/karthikeyan/stuff/python/cpython/Lib/ctypes/test/test_values.py:5: DeprecationWarning: the imp module

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-13 Thread Eric Snow
Eric Snow added the comment: New changeset a2d8c4b81b8e68e2ffe10945f7ca69174c14e52a by Eric Snow in branch 'main': bpo-45019: Do some cleanup related to frozen modules. (gh-28319) https://github.com/python/cpython/commit/a2d8c4b81b8e68e2ffe10945f7ca69174c14e52a -- _

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-13 Thread Eric Snow
Change by Eric Snow : -- pull_requests: +26728 pull_request: https://github.com/python/cpython/pull/28319 ___ Python tracker ___ ___

[issue45019] Freezing modules has manual steps but could be automated.

2021-09-02 Thread Łukasz Langa
Change by Łukasz Langa : -- nosy: +lukasz.langa nosy_count: 3.0 -> 4.0 pull_requests: +26565 pull_request: https://github.com/python/cpython/pull/28125 ___ Python tracker ___ __

[issue45019] Freezing modules has manual steps but could be automated.

2021-08-31 Thread Eric Snow
Change by Eric Snow : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Pyt

[issue45019] Freezing modules has manual steps but could be automated.

2021-08-30 Thread Eric Snow
Eric Snow added the comment: I'm just waiting for the buildbots to finish. -- ___ Python tracker ___ ___ Python-bugs-list mailing l

[issue45019] Freezing modules has manual steps but could be automated.

2021-08-30 Thread Guido van Rossum
Guido van Rossum added the comment: Is this ready to close? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe

[issue45019] Freezing modules has manual steps but could be automated.

2021-08-30 Thread Eric Snow
Eric Snow added the comment: New changeset 044e8d866fdde3804bdb2282c7d23a8074de8f6f by Eric Snow in branch 'main': bpo-45019: Add a tool to generate list of modules to include for frozen modules (gh-27980) https://github.com/python/cpython/commit/044e8d866fdde3804bdb2282c7d23a8074de8f6f --

[issue45019] Freezing modules has manual steps but could be automated.

2021-08-26 Thread Eric Snow
Change by Eric Snow : -- keywords: +patch pull_requests: +26428 stage: needs patch -> patch review pull_request: https://github.com/python/cpython/pull/27980 ___ Python tracker ___

[issue45019] Freezing modules has manual steps but could be automated.

2021-08-26 Thread Eric Snow
New submission from Eric Snow : Currently we freeze the 3 main import-related modules, as well as one module for testing. Adding more modules or otherwise making any adjustments requires manually editing several files (frozen.c, Makefile.pre.in, ...). Those files aren't particularly obvious