Lines Matching refs:NotImplemented
46 return NotImplemented
63 only calls func on the non-NotImplemented items of the list,
65 Otherwise returns NotImplemented."""
68 items = [item for item in lst if item is not NotImplemented]
69 return func(items) if items else NotImplemented
86 lst = [item for item in lst if item is not NotImplemented]
88 return NotImplemented
110 if mergeLogic is NotImplemented:
112 value = mergeLogic(getattr(table, key, NotImplemented) for table in lst)
113 if value is not NotImplemented:
145 return NotImplemented
452 assert (table is not None and table is not NotImplemented), "Have duplicates to resolve for font %d but no GSUB" % (i + 1)
742 tables = [font.get(tag, NotImplemented) for font in fonts]
748 if table is not NotImplemented and table is not False:
779 allKeys = set.union(set(), *(vars(table).keys() for table in tables if table is not NotImplemented))
789 if mergeLogic is NotImplemented:
791 value = mergeLogic(getattr(table, key, NotImplemented) for table in tables)
792 if value is not NotImplemented: