| Home | Trees | Index | Help |
|
|---|
|
|
object --+
|
ConfigInputStream
An input stream which can read either ANSI files with default encoding or Unicode files with BOMs.
Handles UTF-8, UTF-16LE, UTF-16BE. Could handle UTF-32 if Python had built-in support.| Method Summary | |
|---|---|
| __init__(self,
stream)
Initialize an instance. | |
| close(self) | |
| read(self, size) | |
| readline(self) | |
| Inherited from object | |
| __delattr__(...)
x.__delattr__('name') <==> del x.name | |
| __getattribute__(...)
x.__getattribute__('name') <==> x.name | |
| __hash__(x)
Return hash(x)... | |
| __new__(T,
S,
...)
Return a new object with type S, a subtype of T... | |
| __reduce__(...)
helper for pickle | |
| __reduce_ex__(...)
helper for pickle | |
| __repr__(x)
Return repr(x)... | |
| __setattr__(...)
x.__setattr__('name', value) <==> x.name = value | |
| __str__(x)
Return str(x)... | |
| Method Details |
|---|
__init__(self,
stream)
Initialize an instance.
|
close(self) |
read(self, size) |
readline(self) |
| Home | Trees | Index | Help |
|
|---|
| Generated by Epydoc 2.1 on Wed Mar 03 20:02:19 2010 | http://epydoc.sf.net |