http.cookiejar.LWPCookieJar

class http.cookiejar.LWPCookieJar(filename, delayload=None, policy=None) A FileCookieJar that can load from and save cookies to disk in format compatible with the libwww-perl library’s Set-Cookie3 file format. This is convenient if you want to store cookies in a human-readable file.

tkinter.tix.ListNoteBook

class tkinter.tix.ListNoteBook The ListNoteBook widget is very similar to the TixNoteBook widget: it can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages (windows). At one time only one of these pages can be shown. The user can navigate through these pages by choosing the name of the desired page in the hlist subwidget.

tkinter.tix.LabelEntry

class tkinter.tix.LabelEntry The LabelEntry widget packages an entry widget and a label into one mega widget. It can be used to simplify the creation of “entry-form” type of interface.

http.cookiejar.Cookie

class http.cookiejar.Cookie This class represents Netscape, RFC 2109 and RFC 2965 cookies. It is not expected that users of http.cookiejar construct their own Cookie instances. Instead, if necessary, call make_cookies() on a CookieJar instance.

bdb.Bdb.user_line()

user_line(frame) This method is called from dispatch_line() when either stop_here() or break_here() yields True.

curses.window.insertln()

window.insertln() Insert a blank line under the cursor. All following lines are moved down by one line.

pathlib.Path.write_text()

Path.write_text(data, encoding=None, errors=None) Open the file pointed to in text mode, write data to it, and close the file: >>> p = Path('my_text_file') >>> p.write_text('Text file contents') 18 >>> p.read_text() 'Text file contents' New in version 3.5.

ipaddress.IPv6Address.sixtofour

sixtofour For addresses that appear to be 6to4 addresses (starting with 2002::/16) as defined by RFC 3056, this property will report the embedded IPv4 address. For any other address, this property will be None.

urllib.request.HTTPCookieProcessor.cookiejar

HTTPCookieProcessor.cookiejar The http.cookiejar.CookieJar in which cookies are stored.

operator.__rshift__()

operator.__rshift__(a, b) Return a shifted right by b.