[pypy-commit] pypy memory-accounting: change back to 10M seems less insane

fijal pypy.commits at gmail.com
Fri Sep 29 13:52:03 EDT 2017


Author: fijal
Branch: memory-accounting
Changeset: r92515:ddd3bbb41771
Date: 2017-09-29 19:50 +0200
http://bitbucket.org/pypy/pypy/changeset/ddd3bbb41771/

Log:	change back to 10M seems less insane

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
@@ -1317,7 +1317,7 @@
 
         self = space.allocate_instance(_SSLContext, w_subtype)
         assert isinstance(self, _SSLContext)
-        rgc.add_memory_pressure(10 * 1024, self)
+        rgc.add_memory_pressure(10 * 1024 * 1024, self)
         self.ctx = ctx
         self.check_hostname = False
         self.register_finalizer(space)


More information about the pypy-commit mailing list