[pypy-commit] pypy stdlib-2.7.3: Add sys.flags.hash_randomization. Always 0 for now, but this fixes one test.

amauryfa noreply at buildbot.pypy.org
Fri Jun 15 00:44:48 CEST 2012


Author: Amaury Forgeot d'Arc <amauryfa at 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)


More information about the pypy-commit mailing list