[pypy-commit] pypy py3k: we expect the pypy specific CO_CONTAINSGLOBALS

pjenvey noreply at buildbot.pypy.org
Tue Mar 5 03:32:49 CET 2013


Author: Philip Jenvey <pjenvey at underboss.org>
Branch: py3k
Changeset: r62038:631a86b75fe6
Date: 2013-03-04 18:31 -0800
http://bitbucket.org/pypy/pypy/changeset/631a86b75fe6/

Log:	we expect the pypy specific CO_CONTAINSGLOBALS

diff --git a/lib-python/3/test/test_dis.py b/lib-python/3/test/test_dis.py
--- a/lib-python/3/test/test_dis.py
+++ b/lib-python/3/test/test_dis.py
@@ -218,7 +218,7 @@
 Kw-only arguments: 0
 Number of locals:  1
 Stack size:        4
-Flags:             OPTIMIZED, NEWLOCALS, NOFREE
+Flags:             OPTIMIZED, NEWLOCALS, NOFREE, 0x80000
 Constants:
    0: %r
    1: '__func__'
@@ -285,7 +285,7 @@
 Kw-only arguments: 0
 Number of locals:  1
 Stack size:        8
-Flags:             OPTIMIZED, NEWLOCALS, NESTED
+Flags:             OPTIMIZED, NEWLOCALS, NESTED, 0x80000
 Constants:
    0: None
 Names:
@@ -307,7 +307,7 @@
 Kw-only arguments: 0
 Number of locals:  0
 Stack size:        2
-Flags:             NOFREE
+Flags:             NOFREE, 0x80000
 Constants:
    0: 1
 Names:
@@ -320,7 +320,7 @@
 Kw-only arguments: 0
 Number of locals:  0
 Stack size:        2
-Flags:             NOFREE
+Flags:             NOFREE, 0x80000
 Constants:
    0: 1
    1: None
@@ -334,7 +334,7 @@
 Kw-only arguments: 0
 Number of locals:  0
 Stack size:        2
-Flags:             NOFREE
+Flags:             NOFREE, 0x80000
 Constants:
    0: 0
    1: 1


More information about the pypy-commit mailing list