This site does not allow itself to be embedded. You can still read it on the original site — the toolbar below keeps your place in the directory.
Python errno Introduction You probably won’t come across errno until you have been using Python for a little while. When you do, it may not be immediately clear why you need it. Here’s a code snippet to view the full range of errors: import errno import os print {i: os.strerror(i) for i in sorted(errno.errorcode)} The docs give the following intro: This module makes available standard errno system…
Comments
Nothing yet. Say the first thing.
Sign in to join the conversation.