HomeSort by relevance Sort by last modified time
    Searched refs:_is_dunder (Results 1 - 3 of 3) sorted by null

  /external/python/cpython3/Lib/
enum.py 26 def _is_dunder(name): function
96 elif _is_dunder(key):
344 if _is_dunder(name):
    [all...]
typing.py 587 def _is_dunder(attr): function
697 if '__origin__' in self.__dict__ and not _is_dunder(attr):
702 if _is_dunder(attr) or attr in ('_name', '_inst', '_special'):
    [all...]
  /external/python/cpython3/Lib/test/
test_enum.py 97 # _is_descriptor, _is_sunder, _is_dunder
118 self.assertTrue(enum._is_dunder(s))
121 self.assertFalse(enum._is_dunder(s))
    [all...]

Completed in 475 milliseconds