Trees | Indices | Help |
|
---|
|
1 """ 2 Objective-C runtime wrapper for use by LLDB Python formatters 3 4 part of The LLVM Compiler Infrastructure 5 This file is distributed under the University of Illinois Open Source 6 License. See LICENSE.TXT for details. 7 """ 8 9114313 # need to do it this way to prevent endless recursion 14 self.__dict__['_dictionary'] = {} 15 self.__dict__['_allow_reset'] = allow_reset1618 if not self._check_exists(name): 19 return None 20 value = self._dictionary[name] 21 return value22 2527 return name in self._dictionary2830 if self._allow_reset: 31 self._set_impl(name, value) 32 else: 33 self.set_if_necessary(name, value)34 40
Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Fri Oct 14 13:55:30 2016 | http://epydoc.sourceforge.net |