os.removexattr()

os.removexattr(path, attribute, *, follow_symlinks=True) Removes the extended filesystem attribute attribute from path

2016-10-07 17:39:32
ctypes.OleDLL

class ctypes.OleDLL(name, mode=DEFAULT_MODE, handle=None, use_errno=False, use_last_error=False) Windows only: Instances of

2016-10-07 17:29:43
curses.typeahead()

curses.typeahead(fd) Specify that the file descriptor fd be used for typeahead checking. If fd is -1

2016-10-07 17:30:16
os.initgroups()

os.initgroups(username, gid) Call the system initgroups() to initialize the group access list with all of the groups of which

2016-10-07 17:39:10
os.urandom()

os.urandom(n) Return a string of n random bytes suitable for cryptographic use. This

2016-10-07 17:40:10
curses.putp()

curses.putp(string) Equivalent to tputs(str, 1, putchar); emit the value of a specified terminfo capability for

2016-10-07 17:30:11
os.fwalk()

os.fwalk(top='.', topdown=True, onerror=None, *, follow_symlinks=False, dir_fd=None) This behaves exactly like walk()

2016-10-07 17:39:00
io.TextIOBase.tell()

tell() Return the current stream position as an opaque number. The number does not usually represent a number of bytes in the

2016-10-07 17:35:24
curses.window.deleteln()

window.deleteln() Delete the line under the cursor. All following lines are moved up by one line.

2016-10-07 17:30:24
io.BytesIO.getbuffer()

getbuffer() Return a readable and writable view over the contents of the buffer without copying them. Also, mutating the view

2016-10-07 17:35:16