turtle.color()

turtle.color(*args) Return or set pencolor and fillcolor. Several input formats are allowed. They use 0 to 3 arguments as follows: color() Return the current pencolor and the current fillcolor as a pair of color specification strings or tuples as returned by pencolor() and fillcolor(). color(colorstring), color((r,g,b)), color(r,g,b) Inputs as in pencolor(), set both, fillcolor and pencolor, to the given value. color(colorstring1, colorstring2), color((r1,g1,b1), (r2,g2,b2)) Equivalen

sqlite3.Connection.rollback()

rollback() This method rolls back any changes to the database since the last call to commit().

_thread.LockType

_thread.LockType This is the type of lock objects.

datetime.datetime.strptime()

classmethod datetime.strptime(date_string, format) Return a datetime corresponding to date_string, parsed according to format. This is equivalent to datetime(*(time.strptime(date_string, format)[0:6])). ValueError is raised if the date_string and format can’t be parsed by time.strptime() or if it returns a value which isn’t a time tuple. For a complete list of formatting directives, see strftime() and strptime() Behavior.

glob.glob()

glob.glob(pathname, *, recursive=False) Return a possibly-empty list of path names that match pathname, which must be a string containing a path specification. pathname can be either absolute (like /usr/src/Python-1.5/Makefile) or relative (like ../../Tools/*/*.gif), and can contain shell-style wildcards. Broken symlinks are included in the results (as in the shell). If recursive is true, the pattern “**” will match any files and zero or more directories and subdirectories. If the pattern is

json.JSONEncoder.iterencode()

iterencode(o) Encode the given object, o, and yield each string representation as available. For example: for chunk in json.JSONEncoder().iterencode(bigobject): mysocket.write(chunk)

importlib.machinery.FileFinder.find_spec()

find_spec(fullname, target=None) Attempt to find the spec to handle fullname within path. New in version 3.4.

asyncio.Protocol.data_received()

Protocol.data_received(data) Called when some data is received. data is a non-empty bytes object containing the incoming data. Note Whether the data is buffered, chunked or reassembled depends on the transport. In general, you shouldn’t rely on specific semantics and instead make your parsing generic and flexible enough. However, data is always received in the correct order.

configparser.ConfigParser.getfloat()

getfloat(section, option, *, raw=False, vars=None[, fallback]) A convenience method which coerces the option in the specified section to a floating point number. See get() for explanation of raw, vars and fallback.

glob.iglob()

glob.iglob(pathname, recursive=False) Return an iterator which yields the same values as glob() without actually storing them all simultaneously.