From: Neal Norwitz Date: Tue, 27 Feb 2007 06:26:14 +0000 (+0000) Subject: Add some XXX comments for Guido to look at. X-Git-Tag: v3.0a1~1152 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b41c3dc28a16da97af50cc5f7b884db2cea7b0c;p=python Add some XXX comments for Guido to look at. --- diff --git a/Lib/io.py b/Lib/io.py index c714c6b31e..b9ec50dfbb 100644 --- a/Lib/io.py +++ b/Lib/io.py @@ -166,6 +166,8 @@ class FileIO(RawIOBase): self._seekable = True return self._seekable + # XXX(nnorwitz): is there any reason to redefine __enter__ & __exit__? + # Both already have the same impl in the base class. def __enter__(self): return self @@ -203,6 +205,8 @@ class SocketIO(RawIOBase): def writable(self): return "w" in self._mode + # XXX(nnorwitz)??? def fileno(self): return self._sock.fileno() + class BytesIO(RawIOBase):