VirtualMailManager/pycompat.py
author Pascal Volk <neverseen@users.sourceforge.net>
Sun, 28 Feb 2010 20:51:34 +0000
branchv0.6.x
changeset 222 d0c16e70a9fb
parent 219 0b6ce895e1dc
child 224 7e9874a50d92
permissions -rw-r--r--
VMM/Domain: get_gid() return 0 instead of raising an Exception, if the domain wasn't found in the database.

# -*- coding: UTF-8 -*-
# Copyright (c) 2010, Pascal Volk
# See COPYING for distribution information.

"""
    VirtualMailManager.pycompat

    VirtualMailManager's compatibility stuff for Python 2.4
"""

# http://docs.python.org/library/functions.html#all
try:
    all = all
except NameError:
    def all(iterable):
        """Return True if all elements of the *iterable* are true
        (or if the iterable is empty).

        """
        for element in iterable:
            if not element:
                return False
        return True