home *** CD-ROM | disk | FTP | other *** search
- # Source Generated with Decompyle++
- # File: in.pyc (Python 2.6)
-
- from urllib2 import urlopen, Request
- from xml.sax.xmlreader import InputSource
- from rdflib import __version__
- from StringIO import StringIO
-
- class StringInputSource(InputSource, object):
-
- def __init__(self, value, system_id = None):
- super(StringInputSource, self).__init__(system_id)
- stream = StringIO(value)
- self.setByteStream(stream)
-
-
-