[pypy-commit] pypy length-hint: cli probably needs this too

pjenvey noreply at buildbot.pypy.org
Thu Sep 27 02:04:35 CEST 2012


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: length-hint
Changeset: r57626:9b5412db6520
Date: 2012-09-26 17:03 -0700
http://bitbucket.org/pypy/pypy/changeset/9b5412db6520/

Log:	cli probably needs this too

diff --git a/pypy/translator/cli/src/pypylib.cs b/pypy/translator/cli/src/pypylib.cs
--- a/pypy/translator/cli/src/pypylib.cs
+++ b/pypy/translator/cli/src/pypylib.cs
@@ -888,6 +888,7 @@
         public void ll_getitem_fast(int index) { }
         public void ll_setitem_fast(int index) { }
         public void _ll_resize(int length) { this.Count = length; }
+        public void _ll_resize_hint(int length) { }
         public void _ll_resize_ge(int length) { this.Count = length; }
         public void _ll_resize_le(int length) { this.Count = length; }
     }


More information about the pypy-commit mailing list