Skip to content

Instantly share code, notes, and snippets.

@chrigl
Created November 27, 2014 14:05
Show Gist options
  • Save chrigl/f0e6390aeff719c38460 to your computer and use it in GitHub Desktop.
Save chrigl/f0e6390aeff719c38460 to your computer and use it in GitHub Desktop.
issocket
def issocket(fname):
""" Returns True if fname is a socket. """
if not os.path.exists(fname):
return False
return stat.S_ISSOCK(os.stat(fname).st_mode)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment