curses.ascii.unctrl()

curses.ascii.unctrl(c) Return a string representation of the ASCII character c. If c is printable, this string is the character itself. If the character is a control character (0x00-0x1f) the string consists of a caret ('^') followed by the corresponding uppercase letter. If the character is an ASCII delete (0x7f) the string is '^?'. If the character has its meta bit (0x80) set, the meta bit is stripped, the preceding rules applied, and '!' prepended to the result.

pyclbr.Function.name

Function.name The name of the function.

array.array.fromlist()

array.fromlist(list) Append items from the list. This is equivalent to for x in list: a.append(x) except that if there is a type error, the array is unchanged.

test.support.anticipate_failure()

@test.support.anticipate_failure(condition) A decorator to conditionally mark tests with unittest.expectedFailure(). Any use of this decorator should have an associated comment identifying the relevant tracker issue.

array.array.fromfile()

array.fromfile(f, n) Read n items (as machine values) from the file object f and append them to the end of the array. If less than n items are available, EOFError is raised, but the items that were available are still inserted into the array. f must be a real built-in file object; something else with a read() method won’t do.

zipfile.ZipInfo.comment

ZipInfo.comment Comment for the individual archive member.

resource.error

exception resource.error A deprecated alias of OSError. Changed in version 3.3: Following PEP 3151, this class was made an alias of OSError.

os.minor()

os.minor(device) Extract the device minor number from a raw device number (usually the st_dev or st_rdev field from stat).

venv.create()

venv.create(env_dir, system_site_packages=False, clear=False, symlinks=False, with_pip=False) Create an EnvBuilder with the given keyword arguments, and call its create() method with the env_dir argument. Changed in version 3.4: Added the with_pip parameter

stringprep.in_table_a1()

stringprep.in_table_a1(code) Determine whether code is in tableA.1 (Unassigned code points in Unicode 3.2).