What do you mean “reference code” inside pex binar...
# general
r
What do you mean “reference code” inside pex binary? It just packages all of your python code and its underlying dependencies
The PEX file will contain all the code needed to run the binary, namely:
• All Python code and resources the binary transitively depends on.
• The resolved 3rd-party Python dependencies (sdists and wheels) of all targets the binary transitively depends on.