Changeset 2159
- Timestamp:
- 10/07/07 23:35:13 (1 year ago)
- Files:
-
- gaphas/trunk/gaphas/item.py (modified) (2 diffs)
- gaphas/trunk/setup.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/gaphas/item.py
r1917 r2159 40 40 self._connected_to = None 41 41 42 # The constraint used to keep the handle visually connected 42 # User data for the connection (e.g. constraints) 43 self._connection_data = None 44 # An extra property used to disconnect the constraint. Should be set 45 # by the application. 43 46 self._disconnect = lambda: 0 44 47 … … 79 82 self._connected_to = connected_to 80 83 81 connected_to = reversible_property(lambda s: s._connected_to, _set_connected_to) 84 connected_to = reversible_property(lambda s: s._connected_to, 85 _set_connected_to) 86 87 @observed 88 def _set_connection_data(self, connection_data): 89 self._connection_data = connection_data 90 91 connection_data = reversible_property(lambda s: s._connection_data, 92 _set_connection_data) 82 93 83 94 @observed gaphas/trunk/setup.py
r2153 r2159 1 1 2 VERSION = '0.3. 3'2 VERSION = '0.3.4' 3 3 4 4 from ez_setup import use_setuptools
