[pypy-commit] pypy raw-memory-pressure-nursery: fix another place

fijal noreply at buildbot.pypy.org
Wed Feb 15 08:33:50 CET 2012


Author: Maciej Fijalkowski <fijall at gmail.com>
Branch: raw-memory-pressure-nursery
Changeset: r52497:de30be579a52
Date: 2012-02-15 09:33 +0200
http://bitbucket.org/pypy/pypy/changeset/de30be579a52/

Log:	fix another place

diff --git a/pypy/module/pyexpat/interp_pyexpat.py b/pypy/module/pyexpat/interp_pyexpat.py
--- a/pypy/module/pyexpat/interp_pyexpat.py
+++ b/pypy/module/pyexpat/interp_pyexpat.py
@@ -407,7 +407,7 @@
 class W_XMLParserType(Wrappable):
 
     def __init__(self, space, parser, w_intern):
-        rgc.add_memory_pressure(XML_Parser_SIZE + 300)
+        rgc.add_memory_pressure(self, XML_Parser_SIZE + 300)
         self.itself = parser
 
         self.w_intern = w_intern


More information about the pypy-commit mailing list