importlib.machinery.ExtensionFileLoader.get_filename()

get_filename(fullname) Returns path. New in version 3.4.

mmap.mmap.move()

move(dest, src, count) Copy the count bytes starting at offset src to the destination index dest. If the mmap was created with ACCESS_READ, then calls to move will raise a TypeError exception.

csv.register_dialect()

csv.register_dialect(name[, dialect[, **fmtparams]]) Associate dialect with name. name must be a string. The dialect can be specified either by passing a sub-class of Dialect, or by fmtparams keyword arguments, or both, with keyword arguments overriding parameters of the dialect. For full details about the dialect and formatting parameters, see section Dialects and Formatting Parameters.

xml.parsers.expat.xmlparser.StartCdataSectionHandler()

xmlparser.StartCdataSectionHandler() Called at the start of a CDATA section. This and EndCdataSectionHandler are needed to be able to identify the syntactical start and end for CDATA sections.

curses.ascii.isprint()

curses.ascii.isprint(c) Checks for any ASCII printable character including space.

ftplib.FTP.sendcmd()

FTP.sendcmd(cmd) Send a simple command string to the server and return the response string.

multiprocessing.get_all_start_methods()

multiprocessing.get_all_start_methods() Returns a list of the supported start methods, the first of which is the default. The possible start methods are 'fork', 'spawn' and 'forkserver'. On Windows only 'spawn' is available. On Unix 'fork' and 'spawn' are always supported, with 'fork' being the default. New in version 3.4.

unittest.TestCase.failureException

failureException This class attribute gives the exception raised by the test method. If a test framework needs to use a specialized exception, possibly to carry additional information, it must subclass this exception in order to “play fair” with the framework. The initial value of this attribute is AssertionError.

platform.python_branch()

platform.python_branch() Returns a string identifying the Python implementation SCM branch.

nntplib.NNTP.descriptions()

NNTP.descriptions(grouppattern) Send a LIST NEWSGROUPS command, where grouppattern is a wildmat string as specified in RFC 3977 (it’s essentially the same as DOS or UNIX shell wildcard strings). Return a pair (response, descriptions), where descriptions is a dictionary mapping group names to textual descriptions. >>> resp, descs = s.descriptions('gmane.comp.python.*') >>> len(descs) 295 >>> descs.popitem() ('gmane.comp.python.bio.general', 'BioPython discussion l