All Samples(3447) | Call(0) | Derive(0) | Import(3447)
Extensions to the 'distutils' for large or complex distributions
All Samples(0) | Call(0) | Derive(0) | Import(0)
All Samples(247) | Call(0) | Derive(0) | Import(247)
Bootstrap distribute installation
If you want to use setuptools in your package's setup.py, just include this
file in the same directory with it, and add this to the top of your setup.py::
from distribute_setup import use_setuptools
use_setuptools()
If you want to require a specific version of setuptools, set a download
mirror, or use an alternate download directory, you can do so by supplying(more...)
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(1067) | Call(1035) | Derive(0) | Import(32)
csv_writer = csv.writer(fileobj [, dialect='excel']
[optional keyword args])
for row in sequence:
csv_writer.writerow(row)
[or]
csv_writer = csv.writer(fileobj [, dialect='excel']
[optional keyword args])
csv_writer.writerows(rows)(more...)
All Samples(6) | Call(0) | Derive(0) | Import(6)
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)
Specifies the contract relationship between a PowerSystemResource and a contract participant.
All Samples(5) | Call(4) | Derive(0) | Import(1)
Logs a :class:`~logbook.LogRecord` with the level set to :data:`~logbook.CRITICAL`.