Author: Brian Kearns <bdkea...@gmail.com> Branch: Changeset: r71167:2906656b373b Date: 2014-05-01 19:59 -0400 http://bitbucket.org/pypy/pypy/changeset/2906656b373b/
Log: merge heads diff --git a/pypy/module/_lsprof/test/test_cprofile.py b/pypy/module/_lsprof/test/test_cprofile.py --- a/pypy/module/_lsprof/test/test_cprofile.py +++ b/pypy/module/_lsprof/test/test_cprofile.py @@ -43,7 +43,7 @@ ) by_id = set() for entry in stats: - if entry.code == f1.func_code: + if entry.code == f1.__code__: assert len(entry.calls) == 2 for subentry in entry.calls: assert subentry.code in expected @@ -144,8 +144,8 @@ entries = {} for entry in stats: entries[entry.code] = entry - efoo = entries[foo.func_code] - ebar = entries[bar.func_code] + efoo = entries[foo.__code__] + ebar = entries[bar.__code__] assert 0.9 < efoo.totaltime < 2.9 # --- cannot test .inlinetime, because it does not include # --- the time spent doing the call to time.time() @@ -219,12 +219,12 @@ lines.remove(line) break else: - print 'NOT FOUND:', pattern.rstrip('\n') - print '--- GOT ---' - print got - print - print '--- EXPECTED ---' - print expected + print('NOT FOUND: %s' % pattern.rstrip('\n')) + print('--- GOT ---') + print(got) + print() + print('--- EXPECTED ---') + print(expected) assert False assert not lines finally: _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit