Mailing List Archive

python/dist/src/Parser pgen.c,2.20,2.21
Update of /cvsroot/python/python/dist/src/Parser
In directory usw-pr-cvs1:/tmp/cvs-serv3690/Parser

Modified Files:
pgen.c
Log Message:
Py_GETENV is used by obmalloc and needs Py_IgnoreEnvironmentFlag. Provide it.


Index: pgen.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Parser/pgen.c,v
retrieving revision 2.20
retrieving revision 2.21
diff -C2 -d -r2.20 -r2.21
*** pgen.c 4 Dec 2001 03:18:48 -0000 2.20
--- pgen.c 22 Apr 2002 03:29:32 -0000 2.21
***************
*** 14,17 ****
--- 14,18 ----

extern int Py_DebugFlag;
+ int Py_IgnoreEnvironmentFlag; /* needed by Py_GETENV */
RE: python/dist/src/Parser pgen.c,2.20,2.21 [ In reply to ]
[NeilS]
> Modified Files:
> pgen.c
> Log Message:
> Py_GETENV is used by obmalloc and needs Py_IgnoreEnvironmentFlag.
> Provide it.

Oooh -- wouldn't have guessed that one! Thanks for the sanity.