From be1501b976aa36733e6ef0b86c4f8c6844df3181 Mon Sep 17 00:00:00 2001 From: Brett Cannon Date: Thu, 8 May 2008 20:23:06 +0000 Subject: Fix sys.flags to properly expose bytes_warning. Closes issue #2790. --- Python/sysmodule.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Python/sysmodule.c') diff --git a/Python/sysmodule.c b/Python/sysmodule.c index 8a1ef3c5d7..c8842503be 100644 --- a/Python/sysmodule.c +++ b/Python/sysmodule.c @@ -1178,9 +1178,9 @@ static PyStructSequence_Desc flags_desc = { flags__doc__, /* doc */ flags_fields, /* fields */ #ifdef RISCOS - 15 + 16 #else - 14 + 15 #endif }; -- cgit v1.2.1