sys.setdlopenflags()

sys.setdlopenflags(n) Set the flags used by the interpreter for dlopen() calls, such as when the interpreter loads extension modules. Among other things, this will enable a lazy resolving of symbols when importing a module, if called as sys.setdlopenflags(0). To share symbols across extension modules, call as sys.setdlopenflags(os.RTLD_GLOBAL). Symbolic names for the flag values can be found in the os module (RTLD_xxx constants, e.g. os.RTLD_LAZY). Availability: Unix.

datetime.datetime.__str__()

datetime.__str__() For a datetime instance d, str(d) is equivalent to d.isoformat(' ').

xml.sax.xmlreader.AttributesNS.getValueByQName()

AttributesNS.getValueByQName(name) Return the value for a qualified name.

socketserver.BaseServer.socket

socket The socket object on which the server will listen for incoming requests.

pathlib.Path.chmod()

Path.chmod(mode) Change the file mode and permissions, like os.chmod(): >>> p = Path('setup.py') >>> p.stat().st_mode 33277 >>> p.chmod(0o444) >>> p.stat().st_mode 33060

pwd.getpwall()

pwd.getpwall() Return a list of all available password database entries, in arbitrary order.

turtle.listen()

turtle.listen(xdummy=None, ydummy=None) Set focus on TurtleScreen (in order to collect key-events). Dummy arguments are provided in order to be able to pass listen() to the onclick method.

asyncio.AbstractEventLoop.set_task_factory()

AbstractEventLoop.set_task_factory(factory) Set a task factory that will be used by AbstractEventLoop.create_task(). If factory is None the default task factory will be set. If factory is a callable, it should have a signature matching (loop, coro), where loop will be a reference to the active event loop, coro will be a coroutine object. The callable must return an asyncio.Future compatible object. New in version 3.4.4.

curses.window.clrtoeol()

window.clrtoeol() Erase from cursor to the end of the line.

multiprocessing.sharedctypes.copy()

multiprocessing.sharedctypes.copy(obj) Return a ctypes object allocated from shared memory which is a copy of the ctypes object obj.