PATH:
usr
/
share
/
doc
/
python-pycurl-7.19.0
/
tests
#! /usr/bin/env python # -*- coding: iso-8859-1 -*- # vi:ts=4:et # $Id: test_stringio.py,v 1.6 2003/04/21 18:46:11 mfx Exp $ import sys try: from cStringIO import StringIO except ImportError: from StringIO import StringIO import pycurl url = "http://curl.haxx.se/dev/" print "Testing", pycurl.version body = StringIO() c = pycurl.Curl() c.setopt(c.URL, url) c.setopt(c.WRITEFUNCTION, body.write) c.perform() c.close() contents = body.getvalue() print contents
[-] 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]