object.__reduce_ex__()

object.__reduce_ex__(protocol) Alternatively, a __reduce_ex__() method may be defined. The only difference is this method should take a single integer argument, the protocol version. When defined, pickle will prefer it over the __reduce__() method. In addition, __reduce__() automatically becomes a synonym for the extended version. The main use for this method is to provide backwards-compatible reduce values for older Python releases.

logging.handlers.WatchedFileHandler

class logging.handlers.WatchedFileHandler(filename, mode='a', encoding=None, delay=False) Returns a new instance of the WatchedFileHandler class. The specified file is opened and used as the stream for logging. If mode is not specified, 'a' is used. If encoding is not None, it is used to open the file with that encoding. If delay is true, then file opening is deferred until the first call to emit(). By default, the file grows indefinitely. emit(record) Outputs the record to the file, but

decimal.Decimal.ln()

ln(context=None) Return the natural (base e) logarithm of the operand. The result is correctly rounded using the ROUND_HALF_EVEN rounding mode.

msilib.Directory.remove_pyc()

remove_pyc() Remove .pyc/.pyo files on uninstall.

stat.S_ISWHT()

stat.S_ISWHT(mode) Return non-zero if the mode is from a whiteout. New in version 3.4.

socketserver.BaseServer.handle_request()

handle_request() Process a single request. This function calls the following methods in order: get_request(), verify_request(), and process_request(). If the user-provided handle() method of the handler class raises an exception, the server’s handle_error() method will be called. If no request is received within timeout seconds, handle_timeout() will be called and handle_request() will return.

tkinter.tix.ComboBox

class tkinter.tix.ComboBox The ComboBox widget is similar to the combo box control in MS Windows. The user can select a choice by either typing in the entry subwidget or selecting from the listbox subwidget.

test.support.run_doctest()

test.support.run_doctest(module, verbosity=None) Run doctest.testmod() on the given module. Return (failure_count, test_count). If verbosity is None, doctest.testmod() is run with verbosity set to verbose. Otherwise, it is run with verbosity set to None.

calendar.Calendar.monthdayscalendar()

monthdayscalendar(year, month) Return a list of the weeks in the month month of the year as full weeks. Weeks are lists of seven day numbers.

array.array.pop()

array.pop([i]) Removes the item with the index i from the array and returns it. The optional argument defaults to -1, so that by default the last item is removed and returned.