PATH:
usr
/
share
/
doc
/
python-pycurl-7.19.0
/
tests
import pycurl import StringIO import socket def socketopen(family, socktype, protocol): print family, socktype, protocol s = socket.socket(family, socktype, protocol) s.setsockopt(socket.SOL_SOCKET, socket.SO_KEEPALIVE, 1) return s sio = StringIO.StringIO() c = pycurl.Curl() c.setopt(pycurl.OPENSOCKETFUNCTION, socketopen) c.setopt(pycurl.URL, 'http://camvine.com') c.setopt(pycurl.WRITEFUNCTION, sio.write) c.perform()
[-] test_stringio.py
[edit]
[-] test_xmlrpc.py
[edit]
[-] test_getinfo.py
[edit]
[-] test_internals.py
[edit]
[+]
..
[-] test_share.py
[edit]
[-] test_reset.py
[edit]
[-] test_cb.py
[edit]
[-] test_multi3.py
[edit]
[-] test.py
[edit]
[-] util.py
[edit]
[-] test_multi_socket_select.py
[edit]
[-] test_post.py
[edit]
[-] test_multi2.py
[edit]
[-] test_multi.py
[edit]
[-] test_multi6.py
[edit]
[-] test_ftp.py
[edit]
[-] test_gtk.py
[edit]
[-] test_multi4.py
[edit]
[-] test_write_abort.py
[edit]
[-] test_multi5.py
[edit]
[-] test_post3.py
[edit]
[-] test_memleak.py
[edit]
[-] test_post2.py
[edit]
[-] test_multi_socket.py
[edit]
[-] test_multi_timer.py
[edit]
[-] test_socketopen.py
[edit]
[-] util.pyc
[edit]
[-] test_multi_vs_thread.py
[edit]
[-] test_debug.py
[edit]