dis.hasfree

dis.hasfree Sequence of bytecodes that access a free variable (note that ‘free’ in this context refers to names in the current scope that are referenced by inner scopes or names in outer scopes that are referenced from this scope. It does not include references to global or builtin scopes).

asyncore.dispatcher.handle_connect()

handle_connect() Called when the active opener’s socket actually makes a connection. Might send a “welcome” banner, or initiate a protocol negotiation with the remote endpoint, for example.

codecs.getdecoder()

codecs.getdecoder(encoding) Look up the codec for the given encoding and return its decoder function. Raises a LookupError in case the encoding cannot be found.

email.headerregistry.ParameterizedMIMEHeader.params

params A dictionary mapping parameter names to parameter values.

asyncio.AbstractEventLoop.close()

AbstractEventLoop.close() Close the event loop. The loop must not be running. Pending callbacks will be lost. This clears the queues and shuts down the executor, but does not wait for the executor to finish. This is idempotent and irreversible. No other methods should be called after this one.

winreg.FlushKey()

winreg.FlushKey(key) Writes all the attributes of a key to the registry. key is an already open key, or one of the predefined HKEY_* constants. It is not necessary to call FlushKey() to change a key. Registry changes are flushed to disk by the registry using its lazy flusher. Registry changes are also flushed to disk at system shutdown. Unlike CloseKey(), the FlushKey() method returns only when all the data has been written to the registry. An application should only call FlushKey() if it re

os.getsid()

os.getsid(pid) Call the system call getsid(). See the Unix manual for the semantics. Availability: Unix.

tkinter.ttk.Notebook.identify()

identify(x, y) Returns the name of the tab element at position x, y, or the empty string if none.

imaplib.IMAP4.delete()

IMAP4.delete(mailbox) Delete old mailbox named mailbox.

sys.__displayhook__

sys.__displayhook__ sys.__excepthook__ These objects contain the original values of displayhook and excepthook at the start of the program. They are saved so that displayhook and excepthook can be restored in case they happen to get replaced with broken objects.