Commit 250ebe00 authored by Jim Fulton's avatar Jim Fulton

Added __str__ method to Record.Record

parent deb005b5
...@@ -40,6 +40,12 @@ PickleJar.PickleJar.Broken=OFS.Uninstalled.Broken ...@@ -40,6 +40,12 @@ PickleJar.PickleJar.Broken=OFS.Uninstalled.Broken
Bobobase=OFS.Application.open_bobobase() Bobobase=OFS.Application.open_bobobase()
SessionBase=Globals.SessionBase=TJar.TM(Bobobase) SessionBase=Globals.SessionBase=TJar.TM(Bobobase)
# hack Python __str__ method into the record class.
# This needs to be done better in the future.
import Record, string
Record.Record.__str__=lambda r, j=string.join, m=map, s=str: j(m(s,r),', ')
del Record
del string
SingleThreadedTransaction.Transaction.commit=SessionBase.committer() SingleThreadedTransaction.Transaction.commit=SessionBase.committer()
...@@ -56,6 +62,9 @@ if os.environ.has_key('PRINCIPIA_REALM'): ...@@ -56,6 +62,9 @@ if os.environ.has_key('PRINCIPIA_REALM'):
# Revision Log # Revision Log
# #
# $Log: Main.py,v $ # $Log: Main.py,v $
# Revision 1.20 1998/10/21 14:54:37 jim
# Added __str__ method to Record.Record
#
# Revision 1.19 1998/10/21 14:52:34 jim # Revision 1.19 1998/10/21 14:52:34 jim
# Added development mode flag. # Added development mode flag.
# #
......
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