Changeset 391 for python/trunk/Lib/idlelib/RemoteDebugger.py
- Timestamp:
- Mar 19, 2014, 11:31:01 PM (11 years ago)
- Location:
- python/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
python/trunk
-
Property svn:mergeinfo
set to
/python/vendor/Python-2.7.6 merged eligible /python/vendor/current merged eligible
-
Property svn:mergeinfo
set to
-
python/trunk/Lib/idlelib/RemoteDebugger.py
r2 r391 22 22 23 23 import types 24 import rpc25 import Debugger24 from idlelib import rpc 25 from idlelib import Debugger 26 26 27 27 debugging = 0 … … 231 231 232 232 def _get_dict_proxy(self, did): 233 if self._dictcache.has_key(did):233 if did in self._dictcache: 234 234 return self._dictcache[did] 235 235 dp = DictProxy(self._conn, self._oid, did)
Note:
See TracChangeset
for help on using the changeset viewer.