[Pli-devel] pli-devel/pli/net rpcsession2.py,1.5,1.6
Status: Pre-Alpha
Brought to you by:
alex_nanou
|
From: Alex A. N. <ale...@us...> - 2008-03-09 10:26:02
|
Update of /cvsroot/pli/pli-devel/pli/net In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19803/pli/net Modified Files: rpcsession2.py Log Message: Index: rpcsession2.py =================================================================== RCS file: /cvsroot/pli/pli-devel/pli/net/rpcsession2.py,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** rpcsession2.py 8 Mar 2008 15:57:11 -0000 1.5 --- rpcsession2.py 9 Mar 2008 10:26:05 -0000 1.6 *************** *** 2,6 **** __version__ = '''0.3.00''' ! __sub_version__ = '''20080308185500''' __copyright__ = '''(c) Alex A. Naanou 2008''' --- 2,6 ---- __version__ = '''0.3.00''' ! __sub_version__ = '''20080309132348''' __copyright__ = '''(c) Alex A. Naanou 2008''' *************** *** 126,137 **** # low level event handlers... # XXX rename into __<name>__ ! def _onSessionOpen(self, manager): ''' ''' # set the temporary namespace... self.__session_ns__ = {} ! super(SessionWithSessionNSMixin, self)._onSessionOpen(manager) # XXX rename into __<name>__ ! def _onSessionClose(self, manager): ''' ''' --- 126,140 ---- # low level event handlers... # XXX rename into __<name>__ ! ## def _onSessionOpen(self, manager): ! def _onSessionOpen(self): ''' ''' # set the temporary namespace... self.__session_ns__ = {} ! ## super(SessionWithSessionNSMixin, self)._onSessionOpen(manager) ! super(SessionWithSessionNSMixin, self)._onSessionOpen() # XXX rename into __<name>__ ! ## def _onSessionClose(self, manager): ! def _onSessionClose(self): ''' ''' *************** *** 140,144 **** del self.__session_ns__ # fire the event... ! super(SessionWithSessionNSMixin, self)._onSessionClose(manager) --- 143,148 ---- del self.__session_ns__ # fire the event... ! ## super(SessionWithSessionNSMixin, self)._onSessionClose(manager) ! super(SessionWithSessionNSMixin, self)._onSessionClose() |