diff options
author | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2004-12-26 17:31:53 +0000 |
---|---|---|
committer | Markus F.X.J. Oberhumer <markus@oberhumer.com> | 2004-12-26 17:31:53 +0000 |
commit | 2d9bab47e7f4114dd548b328661cf398911ece52 (patch) | |
tree | ac1503e6d4245fad84b07e56ad3e72a41fce3513 /examples | |
parent | 087f599ab15231ccf9e5af19fb121fa50ea74fd1 (diff) | |
download | pycurl-2d9bab47e7f4114dd548b328661cf398911ece52.tar.gz |
"libcurl-the-guide" has been renamed to "libcurl tutorial".
Diffstat (limited to 'examples')
-rw-r--r-- | examples/retriever-multi.py | 4 | ||||
-rw-r--r-- | examples/retriever.py | 4 | ||||
-rw-r--r-- | examples/xmlrpc_curl.py | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/examples/retriever-multi.py b/examples/retriever-multi.py index 9d48ffb..e81922c 100644 --- a/examples/retriever-multi.py +++ b/examples/retriever-multi.py @@ -5,8 +5,8 @@ import string, sys import pycurl -# We should ignore SIGPIPE when using pycurl.NOSIGNAL - see the libcurl -# documentation `libcurl-the-guide' for more info. +# We should ignore SIGPIPE when using pycurl.NOSIGNAL - see +# the libcurl tutorial for more info. try: import signal from signal import SIGPIPE, SIG_IGN diff --git a/examples/retriever.py b/examples/retriever.py index 9b6201c..1c3b3fa 100644 --- a/examples/retriever.py +++ b/examples/retriever.py @@ -6,8 +6,8 @@ import sys, threading, Queue import pycurl -# We should ignore SIGPIPE when using pycurl.NOSIGNAL - see the libcurl -# documentation `libcurl-the-guide' for more info. +# We should ignore SIGPIPE when using pycurl.NOSIGNAL - see +# the libcurl tutorial for more info. try: import signal from signal import SIGPIPE, SIG_IGN diff --git a/examples/xmlrpc_curl.py b/examples/xmlrpc_curl.py index e2ae823..4673258 100644 --- a/examples/xmlrpc_curl.py +++ b/examples/xmlrpc_curl.py @@ -3,8 +3,8 @@ # vi:ts=4:et # $Id$ -# We should ignore SIGPIPE when using pycurl.NOSIGNAL - see the libcurl -# documentation `libcurl-the-guide' for more info. +# We should ignore SIGPIPE when using pycurl.NOSIGNAL - see +# the libcurl tutorial for more info. try: import signal from signal import SIGPIPE, SIG_IGN |