HomeSort by relevance Sort by last modified time
    Searched full:is_internal_attribute (Results 1 - 1 of 1) sorted by null

  /external/chromium_org/third_party/jinja2/
sandbox.py 113 def is_internal_attribute(obj, attr): function
119 >>> from jinja2.sandbox import is_internal_attribute
120 >>> is_internal_attribute(lambda: None, "func_code")
122 >>> is_internal_attribute((lambda x:x).func_code, 'co_code')
124 >>> is_internal_attribute(str, "upper")
266 :func:`is_internal_attribute` function.
268 return not (attr.startswith('_') or is_internal_attribute(obj, attr))

Completed in 48 milliseconds