[pypy-commit] pypy py3.5: Pff, took me too long to figure out this was causing an obscure error at

arigo pypy.commits at gmail.com
Wed Sep 14 11:45:48 EDT 2016


Author: Armin Rigo <arigo at 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 = {}
 
 


More information about the pypy-commit mailing list