I have a Python program, and I want to detect whether it was compiled with mypyc or not so I can include this in the version information of the program for debugging purposes. But how can I do this? I tried looking through dev-intro.md in the mypyc docs, but I couldn't find anything useful. I also looked through Differences from Python in the mypy docs, but I couldn't find anything there either.
How can I detect whether a Python module was compiled with mypyc?