/usr/share/pyshared/rdflib/QueryResult.py is in python-rdflib 2.4.2-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 | class QueryResult(object):
"""
A common class for representing query result in a variety of formats, namely:
xml : as an XML string using the XML result format of the query language
python: as Python objects
json : as JSON
"""
def __init__(self,pythonResult):
self.rt = pythonResult
def serialize(self,format='xml'):
pass
|