diff options
author | Barry Warsaw <barry@python.org> | 1998-07-21 22:41:18 (GMT) |
---|---|---|
committer | Barry Warsaw <barry@python.org> | 1998-07-21 22:41:18 (GMT) |
commit | 1ee36ffca092d60d38c9ec463fd6f047d43664e0 (patch) | |
tree | 116a9b85288b290bbe1aa24572d316218a701c81 | |
parent | b4db1944c4392cb1510f01dcd2b10da6949b83fc (diff) | |
download | cpython-1ee36ffca092d60d38c9ec463fd6f047d43664e0.zip cpython-1ee36ffca092d60d38c9ec463fd6f047d43664e0.tar.gz cpython-1ee36ffca092d60d38c9ec463fd6f047d43664e0.tar.bz2 |
(pause_doc): Sun CC complains about newline in string literal
-rw-r--r-- | Modules/signalmodule.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Modules/signalmodule.c b/Modules/signalmodule.c index d97aa83..7ebad93 100644 --- a/Modules/signalmodule.c +++ b/Modules/signalmodule.c @@ -199,8 +199,8 @@ signal_pause(self, args) return Py_None; } static char pause_doc[] = -"pause() - +"pause()\n\ +\n\ Wait until a signal arrives."; #endif |