LeenO computo metrico con LibreOffice
3.22.0
Il software libero per la gestione di computi metrici e contabilità lavori.
|
Vai al codice sorgente di questo file.
Composti | |
class | utils.ConvertFunctionsToVirtualList |
class | utils.PyPdfError |
class | utils.PdfReadError |
class | utils.PageSizeNotDefinedError |
class | utils.PdfReadWarning |
class | utils.PdfStreamError |
Namespace | |
utils | |
Funzioni | |
def | utils.isString (s) |
def | utils.isInt (n) |
def | utils.isBytes (b) |
def | utils.formatWarning (message, category, filename, lineno, line=None) |
def | utils.readUntilWhitespace (stream, maxchars=None) |
def | utils.readNonWhitespace (stream) |
def | utils.skipOverWhitespace (stream) |
def | utils.skipOverComment (stream) |
def | utils.readUntilRegex (stream, regex, ignore_eof=False) |
def | utils.RC4_encrypt (key, plaintext) |
def | utils.matrixMultiply (a, b) |
def | utils.markLocation (stream) |
def | utils.b_ (s) |
def | utils.u_ (s) |
def | utils.str_ (b) |
def | utils.ord_ (b) |
def | utils.chr_ (c) |
def | utils.barray (b) |
def | utils.hexencode (b) |
def | utils.hexStr (num) |
Variabili | |
utils.xrange_fn = getattr(builtins, "xrange", range) | |
utils.bytes_type = type(bytes()) | |
utils.string_type = getattr(builtins, "unicode", str) | |
tuple | utils.int_types = (int, long) if sys.version_info[0] < 3 else (int,) |
dictionary | utils.B_CACHE = {} |
list | utils.WHITESPACES = [b_(x) for x in [' ', '\n', '\r', '\t', '\x00']] |