Changeset 528 for trunk/RBTelepathy

Show
Ignore:
Timestamp:
04/25/03 00:08:31 (5 years ago)
Author:
sholloway
Message:

Depreciating WeakBind?, LazyProperty?
General cleanup tasks
Demo cleanups

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/RBTelepathy/RBTelepathy/SocketConnections.py

    r445 r528  
    2727import weakref 
    2828 
    29 from RBFoundation.WeakBind import WeakBindCallable 
     29from RBFoundation.BindCallable import WeakBindCallable 
    3030 
    3131import Connection 
  • trunk/RBTelepathy/RBTelepathy/Stream/SocketAdaptor.py

    r476 r528  
    3838import logging 
    3939import threading  
    40 from RBFoundation import SmartSelect, LazyProperty 
     40from RBFoundation import SmartSelect 
     41from RBFoundation.Objects import Properties 
    4142 
    4243#~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
     
    214215    #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 
    215216 
    216     _sendDataLock = LazyProperty.LazyProperty('_sendDataLock',threading.Lock) 
     217    _sendDataLock = Properties.LazyProperty(threading.Lock) 
    217218 
    218219    #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~