Commit ea7505e5 authored by Tres Seaver's avatar Tres Seaver

Wrap long line.

parent a5f98fe6
...@@ -390,7 +390,9 @@ class Persistent(object): ...@@ -390,7 +390,9 @@ class Persistent(object):
# detail, the '_cache' attribute of the jar. We made it a # detail, the '_cache' attribute of the jar. We made it a
# private API to avoid the cycle of keeping a reference to # private API to avoid the cycle of keeping a reference to
# the cache on the persistent object. # the cache on the persistent object.
if self.__jar is not None and self.__oid is not None and self._p_state >= 0: if (self.__jar is not None and
self.__oid is not None and
self._p_state >= 0):
# This scenario arises in ZODB: ZODB.serialize.ObjectWriter # This scenario arises in ZODB: ZODB.serialize.ObjectWriter
# can assign a jar and an oid to newly seen persistent objects, # can assign a jar and an oid to newly seen persistent objects,
# but because they are newly created, they aren't in the # but because they are newly created, they aren't in the
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment