Lines Matching refs:InputSource
54 .. class:: InputSource(system_id=None)
67 An :class:`InputSource` belongs to the application, the :class:`XMLReader` is
68 not allowed to modify :class:`InputSource` objects passed to it from the
105 name or a URL), a file-like object, or an :class:`InputSource` object. When
255 InputSource Objects
259 .. method:: InputSource.setPublicId(id)
261 Sets the public identifier of this :class:`InputSource`.
264 .. method:: InputSource.getPublicId()
266 Returns the public identifier of this :class:`InputSource`.
269 .. method:: InputSource.setSystemId(id)
271 Sets the system identifier of this :class:`InputSource`.
274 .. method:: InputSource.getSystemId()
276 Returns the system identifier of this :class:`InputSource`.
279 .. method:: InputSource.setEncoding(encoding)
281 Sets the character encoding of this :class:`InputSource`.
286 The encoding attribute of the :class:`InputSource` is ignored if the
287 :class:`InputSource` also contains a character stream.
290 .. method:: InputSource.getEncoding()
292 Get the character encoding of this InputSource.
295 .. method:: InputSource.setByteStream(bytefile)
306 .. method:: InputSource.getByteStream()
314 .. method:: InputSource.setCharacterStream(charfile)
322 .. method:: InputSource.getCharacterStream()