os.path.getctime()

os.path.getctime(path) Return the system’s ctime which, on some systems (like Unix) is the time of the last metadata change, and, on others (like Windows), is the creation time for path. The return value is a number giving the number of seconds since the epoch (see the time module). Raise OSError if the file does not exist or is inaccessible.

os.path.splitunc()

os.path.splitunc(path) Deprecated since version 3.1: Use splitdrive instead. Split the pathname path into a pair (unc, rest) so that unc is the UNC mount point (such as r'\\host\mount'), if present, and rest the rest of the path (such as r'\path\file.ext'). For paths containing drive letters, unc will always be the empty string. Availability: Windows.

datetime.time.second

time.second In range(60).

audioop.byteswap()

audioop.byteswap(fragment, width) “Byteswap” all samples in a fragment and returns the modified fragment. Converts big-endian samples to little-endian and vice versa. New in version 3.4.

xmlrpc.client.ServerProxy.system.listMethods()

ServerProxy.system.listMethods() This method returns a list of strings, one for each (non-system) method supported by the XML-RPC server.

turtle.goto()

turtle.goto(x, y=None) turtle.setpos(x, y=None) turtle.setposition(x, y=None) Parameters: x – a number or a pair/vector of numbers y – a number or None If y is None, x must be a pair of coordinates or a Vec2D (e.g. as returned by pos()). Move turtle to an absolute position. If the pen is down, draw line. Do not change the turtle’s orientation. >>> tp = turtle.pos() >>> tp (0.00,0.00) >>> turtle.setpos(60,30) >>> turtle.pos() (60.00,30.00) >>>

unittest.TestCase.assertNotIn()

assertNotIn(first, second, msg=None) Test that first is (or is not) in second. New in version 3.1.

curses.panel.Panel.move()

Panel.move(y, x) Move the panel to the screen coordinates (y, x).

logging.handlers.SysLogHandler.close()

close() Closes the socket to the remote host.

typing.ByteString

class typing.ByteString(Sequence[int]) A generic version of collections.abc.ByteString. This type represents the types bytes, bytearray, and memoryview. As a shorthand for this type, bytes can be used to annotate arguments of any of the types mentioned above.