[Python-checkins] CVS: python/dist/src/Mac/Modules macmodule.c,1.46,1.47

Jack Jansen jackjansen@users.sourceforge.net
Tue, 23 Oct 2001 15:28:25 -0700


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

Modified Files:
	macmodule.c 
Log Message:
Some escaped newlines had spaces between the backslash and the newline. Also slightly changed the comment on xstat().

Index: macmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/macmodule.c,v
retrieving revision 1.46
retrieving revision 1.47
diff -C2 -d -r1.46 -r1.47
*** macmodule.c	2001/10/18 20:34:25	1.46
--- macmodule.c	2001/10/23 22:28:23	1.47
***************
*** 468,474 ****
  or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
  \n\
- Macintosh: The fields st_rsize, st_creator, and st_type are available from\n\
- os.xstat.\n\
- \n\
  See os.stat for more information.\n";
  
--- 468,471 ----
***************
*** 476,483 ****
          { "st_mode",  "protection bits" }, \
          { "st_ino",   "inode" }, \
!         { "st_dev",   "device" }, \ 
          { "st_nlink", "number of hard links" }, \
!         { "st_uid",   "user ID of owner" }, \ 
!         { "st_gid",   "group ID of owner" }, \ 
          { "st_size",  "total size, in bytes" }, \
          { "st_atime", "time of last access" }, \
--- 473,480 ----
          { "st_mode",  "protection bits" }, \
          { "st_ino",   "inode" }, \
!         { "st_dev",   "device" }, \
          { "st_nlink", "number of hard links" }, \
!         { "st_uid",   "user ID of owner" }, \
!         { "st_gid",   "group ID of owner" }, \
          { "st_size",  "total size, in bytes" }, \
          { "st_atime", "time of last access" }, \
***************
*** 503,507 ****
  #ifdef TARGET_API_MAC_OS8
  static PyStructSequence_Field xstat_result_fields[] = {
! 	COMMON_XSTAT_RESULT_FIELDS
  	{ "st_rsize" },
  	{ "st_creator" },
--- 500,504 ----
  #ifdef TARGET_API_MAC_OS8
  static PyStructSequence_Field xstat_result_fields[] = {
! 	COMMON_STAT_RESULT_FIELDS
  	{ "st_rsize" },
  	{ "st_creator" },