configparser.ConfigParser.add_section()
  • References/Python/Python/File Formats

add_section(section) Add a section named section to the instance. If a section by the given name already exists,

2025-01-10 15:47:30
ArithmeticError
  • References/Python/Python/Built-in Exceptions

exception ArithmeticError The base class for those built-in exceptions that are raised for various arithmetic errors:

2025-01-10 15:47:30
str.join()
  • References/Python/Python/Built-in Types

str.join(iterable) Return a string which is the concatenation of the strings in the iterable

2025-01-10 15:47:30
pdb.runcall()
  • References/Python/Python/Debugging & Profiling

pdb.runcall(function, *args, **kwds) Call the function (a function or method object, not a string) with the given arguments

2025-01-10 15:47:30
xml.sax.xmlreader.XMLReader.getProperty()
  • References/Python/Python/Structured Markup

XMLReader.getProperty(propertyname) Return the current setting for property propertyname. If the property is not recognized

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

operator.eq(a, b) operator.ne(a, b) operator.ge(a, b) operator

2025-01-10 15:47:30
weakref.WeakValueDictionary
  • References/Python/Python/Data Types

class weakref.WeakValueDictionary([dict]) Mapping class that references values weakly. Entries in the dictionary will be discarded

2025-01-10 15:47:30
collections.UserString
  • References/Python/Python/Data Types

class collections.UserString([sequence]) Class that simulates a string or a Unicode string object. The instance’s content is

2025-01-10 15:47:30
time.clock()
  • References/Python/Python/Operating System

time.clock() On Unix, return the current processor time as a floating point number expressed in seconds. The precision, and

2025-01-10 15:47:30
http.cookiejar.DefaultCookiePolicy.rfc2109_as_netscape
  • References/Python/Python/Internet

DefaultCookiePolicy.rfc2109_as_netscape If true, request that the CookieJar instance downgrade RFC 2109 cookies

2025-01-10 15:47:30