io.FileIO.name

name The file name. This is the file descriptor of the file when no name is given in the constructor.

mailbox.MMDFMessage.remove_flag()

remove_flag(flag) Unset the flag(s) specified by flag without changing other flags. To remove more than one flag at a time, flag maybe a string of more than one character.

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.