multiprocessing.connection.Listener.close()

close() Close the bound socket or named pipe of the listener object. This is called automatically when the listener is garbage collected. However it is advisable to call it explicitly.

curses.panel.Panel.above()

Panel.above() Returns the panel above the current panel.

ipaddress.IPv6Network.num_addresses

num_addresses

readline.redisplay()

readline.redisplay() Change what’s displayed on the screen to reflect the current contents of the line buffer. This calls rl_redisplay() in the underlying library.

inspect.getdoc()

inspect.getdoc(object) Get the documentation string for an object, cleaned up with cleandoc(). If the documentation string for an object is not provided and the object is a class, a method, a property or a descriptor, retrieve the documentation string from the inheritance hierarchy. Changed in version 3.5: Documentation strings are now inherited if not overridden.

decimal.Context.plus()

plus(x) Plus corresponds to the unary prefix plus operator in Python. This operation applies the context precision and rounding, so it is not an identity operation.

socketserver.BaseServer.service_actions()

service_actions() This is called in the serve_forever() loop. This method can be overridden by subclasses or mixin classes to perform actions specific to a given service, such as cleanup actions. New in version 3.3.

urllib.request.Request.get_header()

Request.get_header(header_name, default=None) Return the value of the given header. If the header is not present, return the default value.

os.stat_result.st_creator

st_creator Creator of the file.

heapq.heappush()

heapq.heappush(heap, item) Push the value item onto the heap, maintaining the heap invariant.