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.

doctest.DocTest.name

name A string name identifying the DocTest. Typically, this is the name of the object or file that the test was extracted from.

reprlib.Repr.maxlevel

Repr.maxlevel Depth limit on the creation of recursive representations. The default is 6.

logging.Handler.addFilter()

Handler.addFilter(filt) Adds the specified filter filt to this handler.

inspect.ismethoddescriptor()

inspect.ismethoddescriptor(object) Return true if the object is a method descriptor, but not if ismethod(), isclass(), isfunction() or isbuiltin() are true. This, for example, is true of int.__add__. An object passing this test has a __get__() method but not a __set__() method, but beyond that the set of attributes varies. A __name__ attribute is usually sensible, and __doc__ often is. Methods implemented via descriptors that also pass one of the other tests return false from the ismethoddes

ctypes._CData.in_dll()

in_dll(library, name) This method returns a ctypes type instance exported by a shared library. name is the name of the symbol that exports the data, library is the loaded shared library.