str.count()

str.count(sub[, start[, end]]) Return the number of non-overlapping occurrences of substring sub in the range [start, end]. Optional arguments start and end are interpreted as in slice notation.

xml.dom.Text.data

Text.data The content of the text node as a string.

ctypes._Pointer.contents

contents Returns the object to which to pointer points. Assigning to this attribute changes the pointer to point to the assigned object.

logging.handlers.TimedRotatingFileHandler.doRollover()

doRollover() Does a rollover, as described above.

multiprocessing.managers.SyncManager.dict()

dict() dict(mapping) dict(sequence) Create a shared dict object and return a proxy for it.

ctypes.c_ushort

class ctypes.c_ushort Represents the C unsigned short datatype. The constructor accepts an optional integer initializer; no overflow checking is done.

doctest.DocTestFailure.test

DocTestFailure.test The DocTest object that was being run when the example failed.

datetime.datetime.utcnow()

classmethod datetime.utcnow() Return the current UTC date and time, with tzinfo None. This is like now(), but returns the current UTC date and time, as a naive datetime object. An aware current UTC datetime can be obtained by calling datetime.now(timezone.utc). See also now().

mimetypes.MimeTypes.read_windows_registry()

MimeTypes.read_windows_registry(strict=True) Load MIME type information from the Windows registry. Availability: Windows. If strict is True, information will be added to the list of standard types, else to the list of non-standard types. New in version 3.2.

turtle.st()

turtle.st() Make the turtle visible. >>> turtle.showturtle()