Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
keewenaw
GitHub Repository: keewenaw/ethereum-wallet-cracker
Path: blob/main/test/lib/python3.9/site-packages/setuptools/command/__init__.py
4799 views
1
from distutils.command.bdist import bdist
2
import sys
3
4
if 'egg' not in bdist.format_commands:
5
bdist.format_command['egg'] = ('bdist_egg', "Python .egg file")
6
bdist.format_commands.append('egg')
7
8
del bdist, sys
9
10