summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2001-10-18 20:53:15 (GMT)
committerGuido van Rossum <guido@python.org>2001-10-18 20:53:15 (GMT)
commita4dc73e2469f9662a1f48e1a2990fc7c0a1377fc (patch)
tree03ff2fac7c42211a7cc9e10ff98aec251666fcd2 /Modules
parentd6f8dba21787a6bbb2aca2fbb09e069ff83637ae (diff)
downloadcpython-a4dc73e2469f9662a1f48e1a2990fc7c0a1377fc.zip
cpython-a4dc73e2469f9662a1f48e1a2990fc7c0a1377fc.tar.gz
cpython-a4dc73e2469f9662a1f48e1a2990fc7c0a1377fc.tar.bz2
Don't leave bare newlines in long strings -- VC doesn't like that.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/posixmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index f0c93aa..d7d7c3f 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -523,7 +523,7 @@ This object may be accessed either as a tuple of\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\
\n\
-Posix/windows: If your platform supports st_blksize, st_blocks, or st_rdev,
+Posix/windows: If your platform supports st_blksize, st_blocks, or st_rdev,\n\
they are available as attributes only.\n\
\n\
See os.stat for more information.\n";
@@ -579,8 +579,8 @@ static PyStructSequence_Desc stat_result_desc = {
static char statvfs_result__doc__[] =
"statvfs_result: Result from statvfs or fstatvfs.\n\n\
This object may be accessed either as a tuple of\n\
- (bsize,frsize,blocks,bfree,bavail,files,ffree,favail,flag,namemax),
-or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.
+ (bsize,frsize,blocks,bfree,bavail,files,ffree,favail,flag,namemax),\n\
+or via the attributes f_bsize, f_frsize, f_blocks, f_bfree, and so on.\n\
\n\
See os.statvfs for more information.\n";