What is a frozen Python module?

前端 未结 3 1172
余生分开走
余生分开走 2020-12-05 18:11

The Python help of the module imp is talking about a frozen module. What is it?

http://docs.python.org/library/imp.html#imp.PY_FROZEN

相关标签:
3条回答
  • 2020-12-05 18:15

    The answer is in the same place:

    (Frozen modules are modules written in Python whose compiled byte-code object is incorporated into a custom-built Python interpreter by Python’s freeze utility. See Tools/freeze/ for now.)

    0 讨论(0)
  • 2020-12-05 18:28

    This link explains what the Python Freeze utility is in detail: http://wiki.python.org/moin/Freeze

    In a nutshell, it creates a portable version of a python script that carries its own built in interpreter (basically like a binary executable), so that you can run it on machines without python.

    0 讨论(0)
  • 2020-12-05 18:40

    http://docs.python.org/library/imp.html#imp.PY_FROZEN links to http://docs.python.org/library/imp.html#imp.init_frozen which explains it:

    Frozen modules are modules written in Python whose compiled byte-code object is incorporated into a custom-built Python interpreter by Python’s freeze utility. See Tools/freeze/ for now.

    0 讨论(0)
提交回复
热议问题