shutil.rmtree.avoids_symlink_attacks

rmtree.avoids_symlink_attacks Indicates whether the current platform and implementation provides a symlink attack resistant version of rmtree(). Currently this is only true for platforms supporting fd-based directory access functions. New in version 3.3.

os.path.normpath()

os.path.normpath(path) Normalize a pathname by collapsing redundant separators and up-level references so that A//B, A/B/, A/./B and A/foo/../B all become A/B. This string manipulation may change the meaning of a path that contains symbolic links. On Windows, it converts forward slashes to backward slashes. To normalize case, use normcase().

tkinter.ttk.Style.theme_use()

theme_use(themename=None) If themename is not given, returns the theme in use. Otherwise, sets the current theme to themename, refreshes all widgets and emits a <<ThemeChanged>> event.

ipaddress.IPv4Network.is_link_local

is_link_local These attributes are true for the network as a whole if they are true for both the network address and the broadcast address

gc.get_debug()

gc.get_debug() Return the debugging flags currently set.

mailbox.MH.remove()

remove(key) __delitem__(key) discard(key) These methods immediately delete the message. The MH convention of marking a message for deletion by prepending a comma to its name is not used.

http.cookiejar.DefaultCookiePolicy.set_blocked_domains()

DefaultCookiePolicy.set_blocked_domains(blocked_domains) Set the sequence of blocked domains.

ftplib.FTP.close()

FTP.close() Close the connection unilaterally. This should not be applied to an already closed connection such as after a successful call to quit(). After this call the FTP instance should not be used any more (after a call to close() or quit() you cannot reopen the connection by issuing another login() method).

io.RawIOBase.readinto()

readinto(b) Read bytes into a pre-allocated, writable bytes-like object b, and return the number of bytes read. If the object is in non-blocking mode and no bytes are available, None is returned.

collections.UserDict.data

data A real dictionary used to store the contents of the UserDict class.