Author: Armin Rigo <ar...@tunes.org>
Branch: py3.5
Changeset: r87108:0419bc15bcf5
Date: 2016-09-14 17:26 +0200
http://bitbucket.org/pypy/pypy/changeset/0419bc15bcf5/

Log:    Pff, took me too long to figure out this was causing an obscure
        error at start-up of pypy-c

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,8 +105,9 @@
     bytes_warning = structseqfield(9)
     quiet = structseqfield(10)
     hash_randomization = structseqfield(11)
+    isolated = structseqfield(12)
 
-null_sysflags = sysflags((0,)*12)
+null_sysflags = sysflags((0,)*13)
 null__xoptions = {}
 
 
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to