summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1997-12-29 19:57:36 (GMT)
committerGuido van Rossum <guido@python.org>1997-12-29 19:57:36 (GMT)
commit23e21e7cf32aa117ebe9938c50c5a448e3000cb2 (patch)
tree9c621486428ed7db182093b095a9ef4a731b2854 /Modules
parent983c930c8d7eb30ce630942d0f87f7bfde958516 (diff)
downloadcpython-23e21e7cf32aa117ebe9938c50c5a448e3000cb2.zip
cpython-23e21e7cf32aa117ebe9938c50c5a448e3000cb2.tar.gz
cpython-23e21e7cf32aa117ebe9938c50c5a448e3000cb2.tar.bz2
Minor editing corrections.
Diffstat (limited to 'Modules')
-rw-r--r--Modules/stropmodule.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c
index 0f1ef95..224e7e9 100644
--- a/Modules/stropmodule.c
+++ b/Modules/stropmodule.c
@@ -32,9 +32,10 @@ PERFORMANCE OF THIS SOFTWARE.
/* strop module */
static char strop_module__doc__[] =
-"Common string manipulations, optimized for speed\n\
+"Common string manipulations, optimized for speed.\n\
+
Always use \"import string\" rather than referencing\n\
-this module directly";
+this module directly.";
#include "Python.h"
@@ -192,10 +193,10 @@ static char joinfields__doc__[] =
joinfields(list [,sep]) -> string\n\
\n\
Return a string composed of the words in list, with\n\
-intervening occurences of sep. The default separator is a\n\
-single space.\n\
+intervening occurences of sep. Sep defaults to a single\n\
+space.\n\
\n\
-(joinfields and join are synonymous)";
+(join and joinfields are synonymous)";
static PyObject *
strop_joinfields(self, args)