This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author pwp333
Recipients eric.smith, methane, pwp333, vstinner
Date 2016-11-16.02:31:05
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1479263466.29.0.66835741972.issue28673@psf.upfronthosting.co.za>
In-reply-to
Content
(gdb) py-bt
#4 Frame 0x7f0ab7a2db60, for file /etc/remoting/remoting_agent.zip/Pyro4/socketutil.py, line 463, in close (self=<SocketConnection at remote 0x7f0ab7a24190>)
    self.sock.shutdown(socket.SHUT_RDWR)
#7 Frame 0x7f0ab0001760, for file /etc/remoting/remoting_agent.zip/Pyro4/socketutil.py, line 453, in __del__ (self=<SocketConnection at remote 0x7f0ab7a24190>)
    self.close()
(gdb) py-list
 458        def recv(self, size):
 459            return receiveData(self.sock, size)
 460
 461        def close(self):
 462            try:
>463                self.sock.shutdown(socket.SHUT_RDWR)
 464            except (OSError, socket.error):
 465                pass
 466            try:
 467                self.sock.close()
 468            except AttributeError:
(gdb) f 7
#7  PyEval_EvalFrameEx (
    f=f@entry=Frame 0x7f0ab0001760, for file /etc/remoting/remoting_agent.zip/Pyro4/socketutil.py, line 453, in __del__ (self=<SocketConnection at remote 0x7f0ab7a24190>), throwflag=throwflag@entry=0) at ../Python/ceval.c:2681
2681	in ../Python/ceval.c
(gdb) py-list
 448        def __init__(self, sock, objectId=None):
 449            self.sock = sock
 450            self.objectId = objectId
 451
 452        def __del__(self):
>453            self.close()
 454
 455        def send(self, data):
 456            sendData(self.sock, data)
 457
 458        def recv(self, size):
(gdb)
History
Date User Action Args
2016-11-16 02:31:06pwp333setrecipients: + pwp333, vstinner, eric.smith, methane
2016-11-16 02:31:06pwp333setmessageid: <1479263466.29.0.66835741972.issue28673@psf.upfronthosting.co.za>
2016-11-16 02:31:06pwp333linkissue28673 messages
2016-11-16 02:31:05pwp333create