[pypy-commit] pypy default: (fijal, arigo) change 10M to 10k, we have no clue what that number should be

fijal pypy.commits at gmail.com
Wed Sep 27 10:03:26 EDT 2017


Author: fijal
Branch: 
Changeset: r92476:b67bc051d0c1
Date: 2017-09-27 16:02 +0200
http://bitbucket.org/pypy/pypy/changeset/b67bc051d0c1/

Log:	(fijal, arigo) change 10M to 10k, we have no clue what that number
	should be

diff --git a/pypy/module/_ssl/interp_ssl.py b/pypy/module/_ssl/interp_ssl.py
--- a/pypy/module/_ssl/interp_ssl.py
+++ b/pypy/module/_ssl/interp_ssl.py
@@ -1315,7 +1315,7 @@
         if not ctx:
             raise ssl_error(space, "failed to allocate SSL context")
 
-        rgc.add_memory_pressure(10 * 1024 * 1024)
+        rgc.add_memory_pressure(10 * 1024)
         self = space.allocate_instance(_SSLContext, w_subtype)
         self.ctx = ctx
         self.check_hostname = False


More information about the pypy-commit mailing list