Author: Maciej Fijalkowski <fij...@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
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to