[pypy-commit] pypy array-overallocation-in-nursery: Comment

arigo noreply at buildbot.pypy.org
Sun Nov 3 10:53:42 CET 2013


Author: Armin Rigo <arigo at tunes.org>
Branch: array-overallocation-in-nursery
Changeset: r67809:8ec658318fe2
Date: 2013-11-03 10:53 +0100
http://bitbucket.org/pypy/pypy/changeset/8ec658318fe2/

Log:	Comment

diff --git a/rpython/translator/test/test_simplify.py b/rpython/translator/test/test_simplify.py
--- a/rpython/translator/test/test_simplify.py
+++ b/rpython/translator/test/test_simplify.py
@@ -340,6 +340,8 @@
     def test_simple_except(self):
         def main(n):
             try:
+                # char -> string conversion inside the append() method,
+                # forced because we later put a string inside lst
                 lst = [chr(x) for x in range(n)]
             except:
                 return -1


More information about the pypy-commit mailing list