[Python-checkins] CVS: python/dist/src/Python compile.c,2.234,2.234.4.1

Michael Hudson mwh@users.sourceforge.net
Mon, 28 Jan 2002 08:06:14 -0800


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv15489

Modified Files:
      Tag: release22-maint
	compile.c 
Log Message:
It's merge time!  (well, this is the last one for the moment)

Backport gvanrossum's checkin of revision 2.236:

A tentative fix for SF bug #503837 (Roeland Rengelink):
type.__module__ problems (again?)

This simply initializes the __module__ local in a class statement from
the __name__ global.  I'm not 100% sure that this is the correct fix,
although it usually does the right thing.  The problem is that if the
class statement executes in a custom namespace, the __name__ global
may be taken from __builtins__, in which case it would have the value
__builtin__, or it may not exist at all (if the custom namespace also
has a custom __builtins__), in which case the class statement will
fail.

Nevertheless, unless someone finds a better solution, this is a 2.2.1
bugfix too.

(apparently noone has :()


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.234
retrieving revision 2.234.4.1
diff -C2 -d -r2.234 -r2.234.4.1
*** compile.c	2001/12/13 19:51:56	2.234
--- compile.c	2002/01/28 16:06:11	2.234.4.1
***************
*** 3927,3930 ****
--- 3927,3933 ----
  	c->c_name = STR(CHILD(n, 1));
  	c->c_private = c->c_name;
+ 	/* Initialize local __module__ from global __name__ */
+ 	com_addop_name(c, LOAD_GLOBAL, "__name__");
+ 	com_addop_name(c, STORE_NAME, "__module__");
  	ch = CHILD(n, NCH(n)-1); /* The suite */
  	doc = get_docstring(c, ch);