Christian Heimes <li...@cheimes.de> added the comment:

File descriptors are a advanced features and expose low level operating system 
resources. You really have to understand how the OS works. They cannot be 
reference counted. In fact they *are* the reference to entries in the Kernel's 
global open file table. I gave a talked about FDs at PyCon US two years ago, 
maybe 
https://speakerdeck.com/tiran/pycon-2016-file-descriptors-unix-sockets-and-other-posix-magic
 will help you understand fds better.

You can make your example work with 
https://docs.python.org/3/library/socket.html#socket.socket.detach

def accept(sock):
    client, addr = sock.accept()
    inside = socket(fileno=client.fileno())
    client.detach()
    print(inside)
    return inside
    # after return, the client socket is closed by due to detach the fd isn't 
no longer close

The feature works as intended. It's designed to turn an inherited file 
descriptor (e.g. systemd socket activation) or transfered fds (e.g. through 
AF_UNIX SCM_RIGHTS). In both cases the fd is already a duplicated fd.

----------

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue28134>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to