aboutsummaryrefslogtreecommitdiffstats
path: root/main/py3-crypto/python-3.8.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/py3-crypto/python-3.8.patch')
-rw-r--r--main/py3-crypto/python-3.8.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/main/py3-crypto/python-3.8.patch b/main/py3-crypto/python-3.8.patch
deleted file mode 100644
index a82929ab7f..0000000000
--- a/main/py3-crypto/python-3.8.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff --git a/lib/Crypto/Random/_UserFriendlyRNG.py b/lib/Crypto/Random/_UserFriendlyRNG.py
-index 957e006..34e2a31 100644
---- a/lib/Crypto/Random/_UserFriendlyRNG.py
-+++ b/lib/Crypto/Random/_UserFriendlyRNG.py
-@@ -74,7 +74,7 @@ class _EntropyCollector(object):
- self._time_es.feed(struct.pack("@I", int(2**30 * (t - floor(t)))))
-
- # Add the fractional part of time.clock()
-- t = time.clock()
-+ t = time.perf_counter()
- self._clock_es.feed(struct.pack("@I", int(2**30 * (t - floor(t)))))
-
-