[Zope3-checkins] CVS: Zope3/src/transaction -
_transaction.py:1.1.2.5
Tim Peters
tim.one at comcast.net
Fri Mar 19 15:49:35 EST 2004
Update of /cvs-repository/Zope3/src/transaction
In directory cvs.zope.org:/tmp/cvs-serv16338/src/transaction
Modified Files:
Tag: jeremy-txn-branch
_transaction.py
Log Message:
object_hint(): Fixed buglet.
=== Zope3/src/transaction/_transaction.py 1.1.2.4 => 1.1.2.5 ===
--- Zope3/src/transaction/_transaction.py:1.1.2.4 Fri Mar 19 15:47:40 2004
+++ Zope3/src/transaction/_transaction.py Fri Mar 19 15:49:34 2004
@@ -369,7 +369,7 @@
klass = o.__class__.__name__
# oid would be great, but may this isn't a persistent object.
oid = getattr(o, "_p_oid", _marker)
- if oid:
+ if oid is not _marker:
oid = oid_repr(oid)
return "%s oid=%s" % (klass, oid)
More information about the Zope3-Checkins
mailing list