Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(0) | Derive(0) | Import(3)
int(x=0) -> int or long int(x, base=10) -> int or long Convert a number or string to an integer, or return 0 if no arguments are given. If x is floating point, the conversion truncates towards zero. If x is outside the integer range, the function returns a long instead. If x is not a number or if base is given, then x must be a string or Unicode object representing an integer literal in the given base. The literal can be preceded by '+' or '-' and be surrounded by whitespace.(more...)
src/e/l/Elevator-HEAD/debian/elevator/usr/share/pyshared/elevator/api.py Elevator(Download)
from .db import DatabaseOptions from .message import ResponseContent, ResponseHeader from .constants import KEY_ERROR, TYPE_ERROR, DATABASE_ERROR,\ VALUE_ERROR, RUNTIME_ERROR, SIGNAL_ERROR,\ SUCCESS_STATUS, FAILURE_STATUS, WARNING_STATUS,\
error_msg = "Database %s doesn't exist" % message.db_uid errors_logger.error(error_msg) status, value = failure(RUNTIME_ERROR, error_msg) # Command not recognized elif not message.command in self.handlers:
src/e/l/Elevator-HEAD/elevator/api.py Elevator(Download)
from .db import DatabaseOptions from .message import ResponseContent, ResponseHeader from .constants import KEY_ERROR, TYPE_ERROR, DATABASE_ERROR,\ VALUE_ERROR, RUNTIME_ERROR, SIGNAL_ERROR,\ SUCCESS_STATUS, FAILURE_STATUS, WARNING_STATUS,\
error_msg = "Database %s doesn't exist" % message.db_uid errors_logger.error(error_msg) status, value = failure(RUNTIME_ERROR, error_msg) # Command not recognized elif not message.command in self.handlers:
src/e/l/Elevator-0.5/elevator/api.py Elevator(Download)
from .db import DatabaseOptions from .message import ResponseContent, ResponseHeader from .constants import KEY_ERROR, TYPE_ERROR, DATABASE_ERROR,\ VALUE_ERROR, RUNTIME_ERROR, SIGNAL_ERROR,\ SUCCESS_STATUS, FAILURE_STATUS, WARNING_STATUS,\
error_msg = "Database %s doesn't exist" % message.db_uid errors_logger.error(error_msg) status, value = failure(RUNTIME_ERROR, error_msg) # Command not recognized elif not message.command in self.handlers: