str.capitalize()

str.capitalize() Return a copy of the string with its first character capitalized and the rest lowercased.

subprocess.STARTUPINFO.hStdOutput

hStdOutput If dwFlags specifies STARTF_USESTDHANDLES, this attribute is the standard output handle for the process. Otherwise, this attribute is ignored and the default for standard output is the console window’s buffer.

http.cookiejar.Cookie.name

Cookie.name Cookie name (a string).

mailbox.mboxMessage.get_flags()

get_flags() Return a string specifying the flags that are currently set. If the message complies with the conventional format, the result is the concatenation in the following order of zero or one occurrence of each of 'R', 'O', 'D', 'F', and 'A'.

calendar.HTMLCalendar.formatmonth()

formatmonth(theyear, themonth, withyear=True) Return a month’s calendar as an HTML table. If withyear is true the year will be included in the header, otherwise just the month name will be used.

smtpd.SMTPChannel.smtp_server

smtp_server Holds the SMTPServer that spawned this channel.

os.path.supports_unicode_filenames

os.path.supports_unicode_filenames True if arbitrary Unicode strings can be used as file names (within limitations imposed by the file system).

plistlib.readPlistFromBytes()

plistlib.readPlistFromBytes(data) Read a plist data from a bytes object. Return the root object. See load() for a description of the keyword arguments. Note Dict values in the result have a __getattr__ method that defers to __getitem_. This means that you can use attribute access to access items of these dictionaries. Deprecated since version 3.4: Use loads() instead.

operator.methodcaller()

operator.methodcaller(name[, args...]) Return a callable object that calls the method name on its operand. If additional arguments and/or keyword arguments are given, they will be given to the method as well. For example: After f = methodcaller('name'), the call f(b) returns b.name(). After f = methodcaller('name', 'foo', bar=1), the call f(b) returns b.name('foo', bar=1). Equivalent to: def methodcaller(name, *args, **kwargs): def caller(obj): return getattr(obj, name)(*args,

traceback.TracebackException.filename

filename For syntax errors - the file name where the error occurred.