Lines Matching refs:InputSource
53 .. class:: InputSource([systemId])
66 An :class:`InputSource` belongs to the application, the :class:`XMLReader` is
67 not allowed to modify :class:`InputSource` objects passed to it from the
104 name or a URL), a file-like object, or an :class:`InputSource` object. When
252 InputSource Objects
256 .. method:: InputSource.setPublicId(id)
258 Sets the public identifier of this :class:`InputSource`.
261 .. method:: InputSource.getPublicId()
263 Returns the public identifier of this :class:`InputSource`.
266 .. method:: InputSource.setSystemId(id)
268 Sets the system identifier of this :class:`InputSource`.
271 .. method:: InputSource.getSystemId()
273 Returns the system identifier of this :class:`InputSource`.
276 .. method:: InputSource.setEncoding(encoding)
278 Sets the character encoding of this :class:`InputSource`.
283 The encoding attribute of the :class:`InputSource` is ignored if the
284 :class:`InputSource` also contains a character stream.
287 .. method:: InputSource.getEncoding()
289 Get the character encoding of this InputSource.
292 .. method:: InputSource.setByteStream(bytefile)
304 .. method:: InputSource.getByteStream()
312 .. method:: InputSource.setCharacterStream(charfile)
321 .. method:: InputSource.getCharacterStream()