I am trying to build a simple Python interactive console application using PyInstaller.
I would like the Python `help()` to be available, but it seems that PyInstaller somehow changes the contents of builtins and removes help.
Here is a simple script that opens a Python window. When I run this script directly in a Windows Command Prompt, I can access help() from the interactive session.
import code code.InteractiveConsole().interact()However, if I build an executable by
PyInstaller test.py
and run it, help is not available. And when I look at the contents of builtins I see that it is not included.
I am on Windows 10, using the latest Python 3.8 release.
(This question has also been posted here: https://stackoverflow.com/questions/63402450/what-does-pyinstaller-do-with-builtins-help)
--
You received this message because you are subscribed to the Google Groups "PyInstaller" group.
To unsubscribe from this group and stop receiving emails from it, send an email to pyinstaller...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/pyinstaller/38169c3b-c348-4295-845c-f8437615d4d3n%40googlegroups.com.