python (3.11.7)

(root)/
lib/
python3.11/
site-packages/
setuptools/
command/
__init__.py
       1  from distutils.command.bdist import bdist
       2  import sys
       3  
       4  if 'egg' not in bdist.format_commands:
       5      try:
       6          bdist.format_commands['egg'] = ('bdist_egg', "Python .egg file")
       7      except TypeError:
       8          # For backward compatibility with older distutils (stdlib)
       9          bdist.format_command['egg'] = ('bdist_egg', "Python .egg file")
      10          bdist.format_commands.append('egg')
      11  
      12  del bdist, sys