summaryrefslogtreecommitdiffstats
path: root/Objects/unicodeobject.c
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>2000-03-10 22:36:57 (GMT)
committerGuido van Rossum <guido@python.org>2000-03-10 22:36:57 (GMT)
commit34a79115c5d5be53581f49ced5a5a17171cabb7d (patch)
tree7a851429c335c7bac81a04013498c39b73e005a0 /Objects/unicodeobject.c
parentfd9eed33aae55e57c84c654493c470e4ad78bc82 (diff)
downloadcpython-34a79115c5d5be53581f49ced5a5a17171cabb7d.zip
cpython-34a79115c5d5be53581f49ced5a5a17171cabb7d.tar.gz
cpython-34a79115c5d5be53581f49ced5a5a17171cabb7d.tar.bz2
Marc-Andre Lemburg: added
gencodec.py - Create Python codecs from Unicode mapping files
Diffstat (limited to 'Objects/unicodeobject.c')
0 files changed, 0 insertions, 0 deletions
n to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Nokia gives you certain additional ** rights. These rights are described in the Nokia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** If you have questions regarding the use of this file, please contact ** Nokia at qt-info@nokia.com. ** ** ** ** ** ** ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ //! [0] QBuffer device; device.setData(myQString.toUtf8()); device.open(QIODevice::ReadOnly); QXmlQuery query; query.setQuery("doc($inputDocument)/query[theDocument]"); query.bindVariable("inputDocument", &device); //! [0]