From kde-commits Sat Jan 01 20:24:22 2011 From: Luca Beltrame Date: Sat, 01 Jan 2011 20:24:22 +0000 To: kde-commits Subject: KDE/kdeexamples/bindings/python/kio Message-Id: <20110101202422.4638CAC8AE () svn ! kde ! org> X-MARC-Message: https://marc.info/?l=kde-commits&m=129391349214022 SVN commit 1210702 by lbeltrame: Tell what this program actually does. M +7 -1 kio_storedget_example.py --- trunk/KDE/kdeexamples/bindings/python/kio/kio_storedget_example.py #1210701:1210702 @@ -28,8 +28,14 @@ storedGet, like the name says, allows KIO to get a single URL into a QByteArray, which than can be accessed through the data() function. Unlike KIO.get, the data -is kept entirely in memory.""" +is kept entirely in memory. +This module shows an example by downloading HTML from www.kde.org and displaying +it in a text edit widget. The operation is done asynchronously, without blocking +the GUI. + +""" + import sys import PyQt4.QtCore as QtCore