diff options
author | Barry Warsaw <barry@python.org> | 1999-01-26 02:15:50 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1999-01-26 02:15:50 (GMT) |
commit | 5b97716caf6f3b82d9184f339918411e7f919fe3 (patch) | |
tree | d01c589998ae3bde0ae01297b9f83d3cdb31a048 /Modules | |
parent | a106568eed3364c8c69eec7edb5b18c08ebb55d4 (diff) | |
download | cpython-5b97716caf6f3b82d9184f339918411e7f919fe3.zip cpython-5b97716caf6f3b82d9184f339918411e7f919fe3.tar.gz cpython-5b97716caf6f3b82d9184f339918411e7f919fe3.tar.bz2 |
expandtabs__doc__: blank line which was not terminated with \n\ caused
the SunPro C compiler to choke. Removed this redundant line.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/stropmodule.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Modules/stropmodule.c b/Modules/stropmodule.c index e13538a..234a4dd 100644 --- a/Modules/stropmodule.c +++ b/Modules/stropmodule.c @@ -621,7 +621,6 @@ strop_capitalize(self, args) static char expandtabs__doc__[] = "expandtabs(string, [tabsize]) -> string\n\ \n\ - Expand tabs in a string, i.e. replace them by one or more spaces,\n\ depending on the current column and the given tab size (default 8).\n\ The column number is reset to zero after each newline occurring in the\n\ |