Changeset 262 for trunk/python
- Timestamp:
- 06/17/11 13:51:31 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/python/pyregfi/__init__.py
r261 r262 106 106 # @note Developers strive to make pyregfi thread-safe. 107 107 # 108 # @note Key and Value names are case-sensitive in regfi and pyregfi109 #110 108 import sys 111 109 import time … … 390 388 # 391 389 # @param name The name of the subkey or value desired. 392 # This is case-sensitive. 393 # 394 # @note The registry format does inherently prevent multiple 395 # subkeys or values from having the same name. 396 # This interface simply returns the first match. 390 # This is case-insensitive. 391 # 392 # @note The registry format does not inherently prevent multiple 393 # subkeys or values from having the same name, having a key 394 # and a value with the same name, or having the same name in 395 # different cases that could both match. 396 # This interface simply returns the first match in the list. 397 397 # Lookups using this method could also fail due to incorrectly 398 # encoded strings .399 # To identify any duplicates , use the iterator interface to400 # check every list element.398 # encoded strings stored as names. 399 # To identify any duplicates or elements with malformed names, 400 # use the iterator interface to check every list element. 401 401 # 402 402 # @return the first element whose name matches, or None if the element
Note: See TracChangeset
for help on using the changeset viewer.