[Zodb-checkins] CVS: ZODB3/Doc/guide - chatter.py:1.2.24.1
Tim Peters
tim.one at comcast.net
Tue Jul 1 17:57:35 EDT 2003
Update of /cvs-repository/ZODB3/Doc/guide
In directory cvs.zope.org:/tmp/cvs-serv9924/Doc/guide
Modified Files:
Tag: zodb33-devel-branch
chatter.py
Log Message:
Whitespace normalization.
=== ZODB3/Doc/guide/chatter.py 1.2 => 1.2.24.1 ===
--- ZODB3/Doc/guide/chatter.py:1.2 Mon Feb 11 18:33:40 2002
+++ ZODB3/Doc/guide/chatter.py Tue Jul 1 16:57:04 2003
@@ -16,8 +16,8 @@
add_message(message) -- add a message to the channel
new_messages() -- return new messages since the last call to
this method
-
-
+
+
"""
def __init__(self, name):
@@ -27,15 +27,15 @@
self.name = name
- # Internal attribute: _messages holds all the chat messages.
+ # Internal attribute: _messages holds all the chat messages.
self._messages = BTree.BTree()
-
+
def new_messages(self):
"Return new messages."
# self._v_last_time is the time of the most recent message
- # returned to the user of this class.
+ # returned to the user of this class.
if not hasattr(self, '_v_last_time'):
self._v_last_time = 0
@@ -48,7 +48,7 @@
self._v_last_time = T2
return new
-
+
def add_message(self, message):
"""Add a message to the channel.
message -- text of the message to be added
@@ -82,7 +82,7 @@
print 'Creating chat_sessions B-tree'
root['chat_sessions'] = BTree.BTree()
get_transaction().commit()
-
+
sessions = root['chat_sessions']
# Get a session object corresponding to the channel name, creating
@@ -94,7 +94,7 @@
session = sessions[ channelname ]
return session
-
+
if __name__ == '__main__':
if len(sys.argv) != 2:
@@ -119,6 +119,5 @@
print msg
# Wait for a few seconds
- pause = random.randint( 1, 4 )
+ pause = random.randint( 1, 4 )
time.sleep( pause )
-
More information about the Zodb-checkins
mailing list