second day of python challenges

This commit is contained in:
abd.shallal
2019-07-17 16:43:09 +03:00
parent 9b7ec09d50
commit b29d889e05
339 changed files with 107042 additions and 89 deletions

12
venv/bin/easy_install Executable file
View File

@@ -0,0 +1,12 @@
#!/home/abd/PycharmProjects/ddd/venv/bin/python
# EASY-INSTALL-ENTRY-SCRIPT: 'setuptools==40.8.0','console_scripts','easy_install'
__requires__ = 'setuptools==40.8.0'
import re
import sys
from pkg_resources import load_entry_point
if __name__ == '__main__':
sys.argv[0] = re.sub(r'(-script\.pyw?|\.exe)?$', '', sys.argv[0])
sys.exit(
load_entry_point('setuptools==40.8.0', 'console_scripts', 'easy_install')()
)