Lines Matching full:things
1 """ fontTools.misc.classifyTools.py -- tools for classifying things.
7 Main Classifier object, used to classify things into similar sets.
11 self._things = set() # set of all things known so far
13 self._mapping = {} # map from things to their class set
26 things, sets, mapping = self._things, self._sets, self._mapping
29 intersection = s.intersection(things) # existing things
30 s.difference_update(intersection) # new things
34 # Add new class for new things
36 things.update(difference)
82 """Returns the set of all things known so far.
91 """Returns the mapping from things to their class set.
116 In other words, this function classifies all the things present in
118 things are a member of.