summaryrefslogtreecommitdiffstats
path: root/Modules/stropmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'Modules/stropmodule.c')
-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)