mailbox.Mailbox.iterkeys()
  • References/Python/Python/Internet Data

iterkeys() keys() Return an iterator over all keys if called as iterkeys() or return a list of keys

2025-01-10 15:47:30
unittest.TestCase.assertIs()
  • References/Python/Python/Development Tools

assertIs(first, second, msg=None) assertIsNot(first, second, msg=None) Test that first and second

2025-01-10 15:47:30
html.unescape()
  • References/Python/Python/Structured Markup

html.unescape(s) Convert all named and numeric character references (e.g. >, >,

2025-01-10 15:47:30
calendar.TextCalendar.pryear()
  • References/Python/Python/Data Types

pryear(theyear, w=2, l=1, c=6, m=3) Print the calendar for an entire year as returned by formatyear().

2025-01-10 15:47:30
os.path.isfile()
  • References/Python/Python/File & Directory Access

os.path.isfile(path) Return True if path is an existing regular file. This follows symbolic links, so

2025-01-10 15:47:30
email.message.EmailMessage.set_content()
  • References/Python/Python/Internet Data

set_content(*args, content_manager=None, **kw) Call the set_content method of the content_manager, passing

2025-01-10 15:47:30
email.generator.Generator.write()
  • References/Python/Python/Internet Data

write(s) Write the string s to the underlying file object, i.e. outfp passed to Generator‘s constructor

2025-01-10 15:47:30
unittest.mock.Mock.
  • References/Python/Python/Development Tools

_get_child_mock(**kw) Create the child mocks for attributes and return value. By default child mocks will be the same type as

2025-01-10 15:47:30
operator.iadd()
  • References/Python/Python/Functional Programming

operator.iadd(a, b) operator.__iadd__(a, b) a = iadd(a, b) is equivalent to a += b.

2025-01-10 15:47:30
telnetlib.Telnet.set_option_negotiation_callback()
  • References/Python/Python/Internet

Telnet.set_option_negotiation_callback(callback) Each time a telnet option is read on the input flow, this callback

2025-01-10 15:47:30