[pypy-commit] stmgc c7-refactor: no MEDIUM_SIZE anymore

Remi Meier noreply at buildbot.pypy.org
Mon Feb 24 16:42:58 CET 2014


Author: Remi Meier
Branch: c7-refactor
Changeset: r834:b19e2928004f
Date: 2014-02-24 16:43 +0100
http://bitbucket.org/pypy/stmgc/changeset/b19e2928004f/

Log:	no MEDIUM_SIZE anymore

diff --git a/c7/test/test_random.py b/c7/test/test_random.py
--- a/c7/test/test_random.py
+++ b/c7/test/test_random.py
@@ -350,7 +350,8 @@
 def op_allocate(ex, global_state, thread_state):
     size = global_state.rnd.choice([
         "16",
-        "SOME_MEDIUM_SIZE+16",
+        str(4096+16),
+        #"SOME_MEDIUM_SIZE+16",
         #"SOME_LARGE_SIZE+16",
     ])
     r = global_state.get_new_root_name(False, size)


More information about the pypy-commit mailing list