Message242101
| Author |
laura |
| Recipients |
BreamoreBoy, benjamin.peterson, gregory.p.smith, jcon, laura, pitrou, stutzbach |
| Date |
2015年04月27日.06:14:46 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1430115287.24.0.0299250040304.issue9858@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
There were originally three methods present in RawIOBase that were not present in PyRawIOBase_Type:
1. readinto
2. write
3. __weakref__
I've created a patch that adds the first two to PyRawIOBase_Type. The python class readinto and write methods raise UnsupportedOperation, so the c methods return a PyExc_NotImplementedError.
The next major question I have is whether we need to implement a __weakref__ method or this should be ignored in the test. |
|