Author: Amaury Forgeot d'Arc <amaur...@gmail.com> Branch: stdlib-2.7.3 Changeset: r55676:5f698b11eff1 Date: 2012-06-15 00:44 +0200 http://bitbucket.org/pypy/pypy/changeset/5f698b11eff1/
Log: Add sys.flags.hash_randomization. Always 0 for now, but this fixes one test. diff --git a/pypy/module/sys/app.py b/pypy/module/sys/app.py --- a/pypy/module/sys/app.py +++ b/pypy/module/sys/app.py @@ -105,5 +105,6 @@ verbose = structseqfield(12) unicode = structseqfield(13) bytes_warning = structseqfield(14) + hash_randomization = structseqfield(15) -null_sysflags = sysflags((0,)*15) +null_sysflags = sysflags((0,)*16) _______________________________________________ pypy-commit mailing list pypy-commit@python.org http://mail.python.org/mailman/listinfo/pypy-commit