another boolean check on objects !!!

Issue #2310 resolved
Mike Bayer repo owner created an issue

Query.py:

    @classmethod
    def _get_from_identity(cls, session, key, passive):
        """Look up the given key in the given session's identity map, 
        check the object for expired state if found.

        """
        instance = session.identity_map.get(key)
        if instance:

Comments (2)

  1. Log in to comment