diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-27 06:26:14 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-02-27 06:26:14 (GMT) |
commit | 8b41c3dc28a16da97af50cc5f7b884db2cea7b0c (patch) | |
tree | 3036d9503a20945d5dfa31868e57bc4ab1ba8236 | |
parent | 28524c7f10beb2821cae57a165ef920abbf76b77 (diff) | |
download | cpython-8b41c3dc28a16da97af50cc5f7b884db2cea7b0c.zip cpython-8b41c3dc28a16da97af50cc5f7b884db2cea7b0c.tar.gz cpython-8b41c3dc28a16da97af50cc5f7b884db2cea7b0c.tar.bz2 |
Add some XXX comments for Guido to look at.
-rw-r--r-- | Lib/io.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -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): |