Commit 77b27b3f authored by Jack Jansen's avatar Jack Jansen

Some escaped newlines had spaces between the backslash and the newline. Also...

Some escaped newlines had spaces between the backslash and the newline. Also slightly changed the comment on xstat().
parent 8b44a1e5
...@@ -467,9 +467,6 @@ This object may be accessed either as a tuple of\n\ ...@@ -467,9 +467,6 @@ This object may be accessed either as a tuple of\n\
(mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\ (mode,ino,dev,nlink,uid,gid,size,atime,mtime,ctime)\n\
or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\ or via the attributes st_mode, st_ino, st_dev, st_nlink, st_uid, and so on.\n\
\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"; See os.stat for more information.\n";
#define COMMON_STAT_RESULT_FIELDS \ #define COMMON_STAT_RESULT_FIELDS \
...@@ -502,7 +499,7 @@ static PyTypeObject StatResultType; ...@@ -502,7 +499,7 @@ static PyTypeObject StatResultType;
#ifdef TARGET_API_MAC_OS8 #ifdef TARGET_API_MAC_OS8
static PyStructSequence_Field xstat_result_fields[] = { static PyStructSequence_Field xstat_result_fields[] = {
COMMON_XSTAT_RESULT_FIELDS COMMON_STAT_RESULT_FIELDS
{ "st_rsize" }, { "st_rsize" },
{ "st_creator" }, { "st_creator" },
{ "st_type "}, { "st_type "},
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment