This contains a fix for CVE-2020-8492 (Denial of service in urllib.request.AbstractBasicAuthHandler)[1]. This also updates the setuptools and pip packages to 47.1.0 and 20.1.1, respectively. [1]: https://docs.python.org/release/3.7.8/whatsnew/changelog.html#python-3-7-8-release-candidate-1 Signed-off-by: Jeffery To <jeffery.to@gmail.com>
14 lines
573 B
Diff
14 lines
573 B
Diff
--- a/setuptools/command/easy_install.py
|
|
+++ b/setuptools/command/easy_install.py
|
|
@@ -1324,7 +1324,10 @@ class easy_install(Command):
|
|
return # already did it, or don't need to
|
|
|
|
sitepy = os.path.join(self.install_dir, "site.py")
|
|
- source = resource_string("setuptools", "site-patch.py")
|
|
+ try:
|
|
+ source = resource_string("setuptools", "site-patch.py")
|
|
+ except FileNotFoundError:
|
|
+ source = resource_string("setuptools", "site-patch.py.txt")
|
|
source = source.decode('utf-8')
|
|
current = ""
|
|
|