xdrlib.Unpacker.unpack_list()

Unpacker.unpack_list(unpack_item) Unpacks and returns a list of homogeneous items. The list is unpacked one element at a time

2016-10-07 17:47:38
csv.csvwriter.writerow()

csvwriter.writerow(row) Write the row parameter to the writer’s file object, formatted according to the current dialect

2016-10-07 17:29:25
configparser.ConfigParser.getboolean()

getboolean(section, option, *, raw=False, vars=None[, fallback]) A convenience method which coerces the option in the

2016-10-07 17:29:11
configparser.ConfigParser.has_section()

has_section(section) Indicates whether the named section is present in the configuration. The default section

2016-10-07 17:29:12
xdrlib.Unpacker.unpack_fopaque()

Unpacker.unpack_fopaque(n) Unpacks and returns a fixed length opaque data stream, similarly to unpack_fstring()

2016-10-07 17:47:38
csv.Dialect

class csv.Dialect The Dialect class is a container class relied on primarily for its attributes, which are used

2016-10-07 17:29:26
csv.Dialect.delimiter

Dialect.delimiter A one-character string used to separate fields. It defaults to ','.

2016-10-07 17:29:26
csv.excel_tab

class csv.excel_tab The excel_tab class defines the usual properties of an Excel-generated TAB-delimited file.

2016-10-07 17:29:28
csv.csvreader.line_num

csvreader.line_num The number of lines read from the source iterator. This is not the same as the number of records returned

2016-10-07 17:29:25
xdrlib.Packer.pack_bytes()

Packer.pack_bytes(bytes) Packs a variable length byte stream, similarly to pack_string().

2016-10-07 17:47:35