Get the byte stream for this input source. The getEncoding method will return the character encoding for this byte stream, or None if unknown.
(self)
| 251 | self.__bytefile = bytefile |
| 252 | |
| 253 | def getByteStream(self): |
| 254 | """Get the byte stream for this input source. |
| 255 | |
| 256 | The getEncoding method will return the character encoding for |
| 257 | this byte stream, or None if unknown.""" |
| 258 | return self.__bytefile |
| 259 | |
| 260 | def setCharacterStream(self, charfile): |
| 261 | """Set the character stream for this input source. (The stream |
no outgoing calls