Previous  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13  Next
All Samples(23)  |  Call(22)  |  Derive(0)  |  Import(1)
stat_float_times([newval]) -> oldval

Determine whether os.[lf]stat represents time stamps as float objects.
If newval is True, future calls to stat() return floats, if it is False,
future calls return ints. 
If newval is omitted, return the current setting.

All Samples(22)  |  Call(22)  |  Derive(0)  |  Import(0)
No Document.

All Samples(20)  |  Call(20)  |  Derive(0)  |  Import(0)
No Document.

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
dict() -> new empty dictionary
dict(mapping) -> new dictionary initialized from a mapping object's
    (key, value) pairs
dict(iterable) -> new dictionary initialized as if via:
    d = {}
    for k, v in iterable:
        d[k] = v
dict(**kwargs) -> new dictionary initialized with the name=value pairs
    in the keyword argument list.  For example:  dict(one=1, two=2)

All Samples(17)  |  Call(0)  |  Derive(0)  |  Import(17)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(17)  |  Call(0)  |  Derive(0)  |  Import(17)
str(object) -> string

Return a nice string representation of the object.
If the argument is a string, the return value is the same object.

All Samples(4)  |  Call(0)  |  Derive(0)  |  Import(4)
No Document.

All Samples(16)  |  Call(15)  |  Derive(0)  |  Import(1)
setgroups(list)

Set the groups of the current process to list.

All Samples(16)  |  Call(15)  |  Derive(0)  |  Import(1)
getpgid(pid) -> pgid

Call the system call getpgid().

All Samples(15)  |  Call(15)  |  Derive(0)  |  Import(0)
fdatasync(fildes)

force write of file with filedescriptor to disk.
 does not force update of metadata.

All Samples(14)  |  Call(14)  |  Derive(0)  |  Import(0)
No Document.

All Samples(14)  |  Call(13)  |  Derive(0)  |  Import(1)
WCOREDUMP(status) -> bool

Return True if the process returning 'status' was dumped to a core file.

All Samples(14)  |  Call(14)  |  Derive(0)  |  Import(0)
getloadavg() -> (float, float, float)

Return the number of processes in the system run queue averaged over
the last 1, 5, and 15 minutes or raises OSError if the load average
was unobtainable

All Samples(13)  |  Call(13)  |  Derive(0)  |  Import(0)
No Document.

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(12)  |  Call(5)  |  Derive(0)  |  Import(7)
getgroups() -> list of group IDs

Return list of supplemental group IDs for the process.

All Samples(10)  |  Call(0)  |  Derive(0)  |  Import(10)
No Document.

All Samples(1)  |  Call(0)  |  Derive(0)  |  Import(1)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(0)  |  Call(0)  |  Derive(0)  |  Import(0)
int(x[, base]) -> integer

Convert a string or number to an integer, if possible.  A floating point
argument will be truncated towards zero (this does not include a string
representation of a floating point number!)  When converting a string, use
the optional base.  It is an error to supply a base when converting a
non-string.  If base is zero, the proper base is guessed based on the
string content.  If the argument is outside the integer range a
long object will be returned instead.

All Samples(9)  |  Call(9)  |  Derive(0)  |  Import(0)
tcgetpgrp(fd) -> pgid

Return the process group associated with the terminal given by a fd.

Previous  5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13  Next