diff options
author | Georg Brandl <georg@python.org> | 2006-03-21 18:17:25 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-03-21 18:17:25 (GMT) |
commit | bb03ac0dae9830968ae971ab53143e2d539d7a3a (patch) | |
tree | cb6f196ec6c3933a1b064e500cbf81355566c5c7 /Lib/socket.py | |
parent | 9ca8789ee39880199990ed964b6af0369c4294c1 (diff) | |
download | cpython-bb03ac0dae9830968ae971ab53143e2d539d7a3a.zip cpython-bb03ac0dae9830968ae971ab53143e2d539d7a3a.tar.gz cpython-bb03ac0dae9830968ae971ab53143e2d539d7a3a.tar.bz2 |
Correct API design mistake from rev. 43126: make socket attributes readonly properties.
Diffstat (limited to 'Lib/socket.py')
-rw-r--r-- | Lib/socket.py | 22 |
1 files changed, 4 insertions, 18 deletions
diff --git a/Lib/socket.py b/Lib/socket.py index 3dc59c4..7e49192 100644 --- a/Lib/socket.py +++ b/Lib/socket.py @@ -182,24 +182,10 @@ class _socketobject(object): Return a regular file object corresponding to the socket. The mode and bufsize arguments are as for the built-in open() function.""" return _fileobject(self._sock, mode, bufsize) - - def getfamily(self): - """getfamily() -> socket family - - Return the socket family.""" - return self._sock.family - - def gettype(self): - """gettype() -> socket type - - Return the socket type.""" - return self._sock.type - - def getproto(self): - """getproto() -> socket protocol - - Return the socket protocol.""" - return self._sock.proto + + family = property(lambda self: self._sock.family, doc="the socket family") + type = property(lambda self: self._sock.type, doc="the socket type") + proto = property(lambda self: self._sock.proto, doc="the socket protocol") _s = ("def %s(self, *args): return self._sock.%s(*args)\n\n" "%s.__doc__ = _realsocket.%s.__doc__\n") |