Author: Matti Picus <matti.pi...@gmail.com> Branch: Changeset: r93646:35cff1db08c1 Date: 2018-01-10 18:08 +0200 http://bitbucket.org/pypy/pypy/changeset/35cff1db08c1/
Log: trivial fixes diff --git a/rpython/memory/gc/minimarktest.py b/rpython/memory/gc/minimarktest.py --- a/rpython/memory/gc/minimarktest.py +++ b/rpython/memory/gc/minimarktest.py @@ -20,6 +20,7 @@ self.small_request_threshold = small_request_threshold self.all_objects = [] self.total_memory_used = 0 + self.arenas_count = 0 def malloc(self, size): nsize = raw_malloc_usage(size) diff --git a/rpython/rlib/test/test_rarithmetic.py b/rpython/rlib/test/test_rarithmetic.py --- a/rpython/rlib/test/test_rarithmetic.py +++ b/rpython/rlib/test/test_rarithmetic.py @@ -559,7 +559,7 @@ '4_2', '1_0000_0000', '0b1001_0100', - '0xffff_ffff', + '0xfff_ffff', '0o5_7_7', '0b_0', '0x_f', @@ -583,7 +583,7 @@ # Multiple consecutive underscores: '4_______2', '0b1001__0100', - '0xffff__ffff', + '0xfff__ffff', '0x___', '0o5__77', '1e1__0', _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit