Changeset 212 for trunk/python
- Timestamp:
- 03/23/11 23:00:16 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/pyregfi/__init__.py
r210 r212 149 149 ## Abstract class which Handles memory management and proxies attribute 150 150 # access to base structures 151 class _StructureWrapper( ):151 class _StructureWrapper(object): 152 152 153 153 hive = None … … 187 187 188 188 189 class _GenericList( ):189 class _GenericList(object): 190 190 hive = None 191 191 key = None … … 241 241 return self.constructor(self.hive, elem) 242 242 243 # For Python 2.x 244 def next(self): 245 return self.__next__() 246 243 247 244 248 class _SubkeyList(_GenericList): … … 457 461 return self.current_key() 458 462 463 # For Python 2.x 464 def next(self): 465 return self.__next__() 466 459 467 def down(self): 460 468 pass
Note: See TracChangeset
for help on using the changeset viewer.