curses.panel.Panel.show()

Panel.show() Display the panel (which might have been hidden).

datetime.time.tzname()

time.tzname() If tzinfo is None, returns None, else returns self.tzinfo.tzname(None), or raises an exception if the latter doesn’t return None or a string object.

_thread.get_ident()

_thread.get_ident() Return the ‘thread identifier’ of the current thread. This is a nonzero integer. Its value has no direct meaning; it is intended as a magic cookie to be used e.g. to index a dictionary of thread-specific data. Thread identifiers may be recycled when a thread exits and another thread is created.

pipes.Template.copy()

Template.copy(infile, outfile) Copy infile to outfile through the pipe.

ipaddress.IPv4Network.is_loopback

is_loopback

tkinter.ttk.Combobox.set()

set(value) Sets the value of the combobox to value.

bdb.Bdb.set_break()

set_break(filename, lineno, temporary=0, cond, funcname) Set a new breakpoint. If the lineno line doesn’t exist for the filename passed as argument, return an error message. The filename should be in canonical form, as described in the canonic() method.

asyncio.asyncio.subprocess.Process.terminate()

terminate() Stop the child. On Posix OSs the method sends signal.SIGTERM to the child. On Windows the Win32 API function TerminateProcess() is called to stop the child.

ctypes.byref()

ctypes.byref(obj[, offset]) Returns a light-weight pointer to obj, which must be an instance of a ctypes type. offset defaults to zero, and must be an integer that will be added to the internal pointer value. byref(obj, offset) corresponds to this C code: (((char *)&obj) + offset) The returned object can only be used as a foreign function call parameter. It behaves similar to pointer(obj), but the construction is a lot faster.

urllib.request.FileHandler.file_open()

FileHandler.file_open(req) Open the file locally, if there is no host name, or the host name is 'localhost'. Changed in version 3.2: This method is applicable only for local hostnames. When a remote hostname is given, an URLError is raised.