asyncio.Server.sockets

sockets List of socket.socket objects the server is listening to, or None if the server is closed.

zipimport.zipimporter.get_code()

get_code(fullname) Return the code object for the specified module. Raise ZipImportError if the module couldn’t be found.

ssl.SSLSyscallError

exception ssl.SSLSyscallError A subclass of SSLError raised when a system error was encountered while trying to fulfill an operation on a SSL socket. Unfortunately, there is no easy way to inspect the original errno number. New in version 3.3.

shutil.SameFileError

exception shutil.SameFileError This exception is raised if source and destination in copyfile() are the same file. New in version 3.4.

tarfile.TarFile.getnames()

TarFile.getnames() Return the members as a list of their names. It has the same order as the list returned by getmembers().

tarfile.TarFile.addfile()

TarFile.addfile(tarinfo, fileobj=None) Add the TarInfo object tarinfo to the archive. If fileobj is given, it should be a binary file, and tarinfo.size bytes are read from it and added to the archive. You can create TarInfo objects directly, or by using gettarinfo().

bytes.rindex()

bytes.rindex(sub[, start[, end]]) bytearray.rindex(sub[, start[, end]]) Like rfind() but raises ValueError when the subsequence sub is not found. The subsequence to search for may be any bytes-like object or an integer in the range 0 to 255. Changed in version 3.3: Also accept an integer in the range 0 to 255 as the subsequence.

curses.window.box()

window.box([vertch, horch]) Similar to border(), but both ls and rs are vertch and both ts and bs are horch. The default corner characters are always used by this function.

os.spawnl()

os.spawnl(mode, path, ...) os.spawnle(mode, path, ..., env) os.spawnlp(mode, file, ...) os.spawnlpe(mode, file, ..., env) os.spawnv(mode, path, args) os.spawnve(mode, path, args, env) os.spawnvp(mode, file, args) os.spawnvpe(mode, file, args, env) Execute the program path in a new process. (Note that the subprocess module provides more powerful facilities for spawning new processes and retrieving their results; using that module is preferable to using these functions. Check especially the Rep

test.support.run_with_locale()

@test.support.run_with_locale(catstr, *locales) A decorator for running a function in a different locale, correctly resetting it after it has finished. catstr is the locale category as a string (for example "LC_ALL"). The locales passed will be tried sequentially, and the first valid locale will be used.