$49 GRAYBYTE WORDPRESS FILE MANAGER $90

SERVER : vnpttt-amd7f72-h1.vietnix.vn #1 SMP Fri May 24 12:42:50 UTC 2024
SERVER IP : 103.200.23.149 | ADMIN IP 216.73.216.22
OPTIONS : CRL = ON | WGT = ON | SDO = OFF | PKEX = OFF
DEACTIVATED : NONE

/lib64/python2.7/site-packages/sqlalchemy/testing/

HOME
Current File : /lib64/python2.7/site-packages/sqlalchemy/testing//entities.py
# testing/entities.py
# Copyright (C) 2005-2024 the SQLAlchemy authors and contributors
# <see AUTHORS file>
#
# This module is part of SQLAlchemy and is released under
# the MIT License: https://www.opensource.org/licenses/mit-license.php

import sqlalchemy as sa
from .. import exc as sa_exc
from ..util import compat

_repr_stack = set()


class BasicEntity(object):
    def __init__(self, **kw):
        for key, value in kw.items():
            setattr(self, key, value)

    def __repr__(self):
        if id(self) in _repr_stack:
            return object.__repr__(self)
        _repr_stack.add(id(self))
        try:
            return "%s(%s)" % (
                (self.__class__.__name__),
                ", ".join(
                    [
                        "%s=%r" % (key, getattr(self, key))
                        for key in sorted(self.__dict__.keys())
                        if not key.startswith("_")
                    ]
                ),
            )
        finally:
            _repr_stack.remove(id(self))


_recursion_stack = set()


class ComparableMixin(object):
    def __ne__(self, other):
        return not self.__eq__(other)

    def __eq__(self, other):
        """'Deep, sparse compare.

        Deeply compare two entities, following the non-None attributes of the
        non-persisted object, if possible.

        """
        if other is self:
            return True
        elif not self.__class__ == other.__class__:
            return False

        if id(self) in _recursion_stack:
            return True
        _recursion_stack.add(id(self))

        try:
            # pick the entity that's not SA persisted as the source
            try:
                self_key = sa.orm.attributes.instance_state(self).key
            except sa.orm.exc.NO_STATE:
                self_key = None

            if other is None:
                a = self
                b = other
            elif self_key is not None:
                a = other
                b = self
            else:
                a = self
                b = other

            for attr in list(a.__dict__):
                if attr.startswith("_"):
                    continue
                value = getattr(a, attr)

                try:
                    # handle lazy loader errors
                    battr = getattr(b, attr)
                except (AttributeError, sa_exc.UnboundExecutionError):
                    return False

                if hasattr(value, "__iter__") and not isinstance(
                    value, compat.string_types
                ):
                    if hasattr(value, "__getitem__") and not hasattr(
                        value, "keys"
                    ):
                        if list(value) != list(battr):
                            return False
                    else:
                        if set(value) != set(battr):
                            return False
                else:
                    if value is not None and value != battr:
                        return False
            return True
        finally:
            _recursion_stack.remove(id(self))


class ComparableEntity(ComparableMixin, BasicEntity):
    def __hash__(self):
        return hash(self.__class__)

Current_dir [ NOT WRITEABLE ] Document_root [ WRITEABLE ]


[ Back ]
NAME
SIZE
LAST TOUCH
USER
CAN-I?
FUNCTIONS
..
--
23 Sep 2024 10.41 AM
root / root
0755
plugin
--
23 Sep 2024 10.41 AM
root / root
0755
suite
--
23 Sep 2024 10.41 AM
root / root
0755
__init__.py
2.914 KB
5 Sep 2024 10.50 PM
root / root
0644
__init__.pyc
3.738 KB
23 Sep 2024 10.41 AM
root / root
0644
assertions.py
28.454 KB
5 Sep 2024 10.50 PM
root / root
0644
assertions.pyc
32.271 KB
23 Sep 2024 10.41 AM
root / root
0644
assertsql.py
14.613 KB
5 Sep 2024 10.50 PM
root / root
0644
assertsql.pyc
15.358 KB
23 Sep 2024 10.41 AM
root / root
0644
asyncio.py
3.585 KB
5 Sep 2024 10.50 PM
root / root
0644
asyncio.pyc
3.564 KB
23 Sep 2024 10.41 AM
root / root
0644
config.py
9.439 KB
5 Sep 2024 10.50 PM
root / root
0644
config.pyc
12.109 KB
23 Sep 2024 10.41 AM
root / root
0644
engines.py
13.078 KB
5 Sep 2024 10.50 PM
root / root
0644
engines.pyc
17.368 KB
23 Sep 2024 10.41 AM
root / root
0644
entities.py
3.177 KB
5 Sep 2024 10.50 PM
root / root
0644
entities.pyc
3.331 KB
23 Sep 2024 10.41 AM
root / root
0644
exclusions.py
13.001 KB
5 Sep 2024 10.50 PM
root / root
0644
exclusions.pyc
19.058 KB
23 Sep 2024 10.41 AM
root / root
0644
fixtures.py
30.199 KB
5 Sep 2024 10.50 PM
root / root
0644
fixtures.pyc
30.239 KB
23 Sep 2024 10.41 AM
root / root
0644
mock.py
0.873 KB
5 Sep 2024 10.50 PM
root / root
0644
mock.pyc
0.749 KB
23 Sep 2024 10.41 AM
root / root
0644
pickleable.py
2.818 KB
5 Sep 2024 10.50 PM
root / root
0644
pickleable.pyc
7.781 KB
23 Sep 2024 10.41 AM
root / root
0644
profiling.py
10.401 KB
5 Sep 2024 10.50 PM
root / root
0644
profiling.pyc
9.858 KB
23 Sep 2024 10.41 AM
root / root
0644
provision.py
12.029 KB
5 Sep 2024 10.50 PM
root / root
0644
provision.pyc
13.639 KB
23 Sep 2024 10.41 AM
root / root
0644
requirements.py
43.585 KB
5 Sep 2024 10.50 PM
root / root
0644
requirements.pyc
69.734 KB
23 Sep 2024 10.41 AM
root / root
0644
schema.py
6.391 KB
5 Sep 2024 10.50 PM
root / root
0644
schema.pyc
7.188 KB
23 Sep 2024 10.41 AM
root / root
0644
util.py
13.677 KB
5 Sep 2024 10.50 PM
root / root
0644
util.pyc
17.46 KB
23 Sep 2024 10.41 AM
root / root
0644
warnings.py
2.411 KB
5 Sep 2024 10.50 PM
root / root
0644
warnings.pyc
2.457 KB
23 Sep 2024 10.41 AM
root / root
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME
Static GIF