OpenMTC/build/lib/futile/net/sockethelper.py
2017-11-07 14:41:38 +01:00

13 lines
254 B
Python

'''
Created on 14.07.2011
@author: kca
'''
from socket import socket as _socket, AF_INET, SOCK_STREAM
from futile.contextlib import closing
def socket(family = AF_INET, type = SOCK_STREAM, proto = 0):
return closing(_socket(family, type, proto))