[Python-checkins] CVS: python/dist/src/Mac/Resources pythonpath.r,1.13,1.14

Jack Jansen jackjansen@users.sourceforge.net
Sat, 01 Sep 2001 15:36:26 -0700


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

Modified Files:
	pythonpath.r 
Log Message:
Added preferences/startup options for division warning
and accepting unix-style newlines on input.

Index: pythonpath.r
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Resources/pythonpath.r,v
retrieving revision 1.13
retrieving revision 1.14
diff -C2 -d -r1.13 -r1.14
*** pythonpath.r	2001/08/19 22:02:56	1.13
--- pythonpath.r	2001/09/01 22:36:24	1.14
***************
*** 27,30 ****
--- 27,32 ----
  	byte navService = 0, noNavService = 1;
  	byte noDelayConsole = 0, delayConsole = 1;
+ 	byte noDivisionWarning = 0, divisionWarning = 1;
+ 	byte noUnixNewlines = 0, unixNewlines = 1;
  };
  
***************
*** 56,59 ****
--- 58,63 ----
  		"No NavServices in macfs",		'DBYT',
  		"Delay console window",			'DBYT',
+ 		"Warnings for old-style division",	'DBYT',
+ 		"Allow unix newlines on textfile input",'DBYT',
  	}
  };
***************
*** 76,79 ****
--- 80,85 ----
  	navService,
  	noDelayConsole,
+ 	noDivisionWarning,
+ 	unixNewlines,
  };