Changeset 528 for trunk/RBTelepathy
- Timestamp:
- 04/25/03 00:08:31 (5 years ago)
- Files:
-
- trunk/RBTelepathy/RBTelepathy/SocketConnections.py (modified) (1 diff)
- trunk/RBTelepathy/RBTelepathy/Stream/SocketAdaptor.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/RBTelepathy/RBTelepathy/SocketConnections.py
r445 r528 27 27 import weakref 28 28 29 from RBFoundation. WeakBindimport WeakBindCallable29 from RBFoundation.BindCallable import WeakBindCallable 30 30 31 31 import Connection trunk/RBTelepathy/RBTelepathy/Stream/SocketAdaptor.py
r476 r528 38 38 import logging 39 39 import threading 40 from RBFoundation import SmartSelect, LazyProperty 40 from RBFoundation import SmartSelect 41 from RBFoundation.Objects import Properties 41 42 42 43 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ … … 214 215 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 215 216 216 _sendDataLock = LazyProperty.LazyProperty('_sendDataLock',threading.Lock)217 _sendDataLock = Properties.LazyProperty(threading.Lock) 217 218 218 219 #~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
