[Python-checkins] python/dist/src/Mac/Python macmain.c,1.72.8.2,1.72.8.3

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Tue, 25 Feb 2003 06:19:13 -0800


Update of /cvsroot/python/python/dist/src/Mac/Python
In directory sc8-pr-cvs1:/tmp/cvs-serv24788

Modified Files:
      Tag: release22-maint
	macmain.c 
Log Message:
Removed debug output. Fixes #635570


Index: macmain.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Python/macmain.c,v
retrieving revision 1.72.8.2
retrieving revision 1.72.8.3
diff -C2 -d -r1.72.8.2 -r1.72.8.3
*** macmain.c	29 Oct 2002 22:03:45 -0000	1.72.8.2
--- macmain.c	25 Feb 2003 14:19:07 -0000	1.72.8.3
***************
*** 559,569 ****
  			script = scriptpath;
  			
- 		printf("original argc=%d\n", argc);
- 		for(i=0; i<argc; i++) printf("original argv[%d] = \"%s\"\n", i, argv[i]);
  
  		init_common(&argc, &argv, 0);
  
- 		printf("modified argc=%d\n", argc);
- 		for(i=0; i<argc; i++) printf("modified argv[%d] = \"%s\"\n", i, argv[i]);
  	}
  
--- 559,565 ----