Lines Matching full:things
1 """ fontTools.misc.classifyTools.py -- tools for classifying things.
10 Main Classifier object, used to classify things into similar sets.
15 self._things = set() # set of all things known so far
17 self._mapping = {} # map from things to their class set
30 things, sets, mapping = self._things, self._sets, self._mapping
33 intersection = s.intersection(things) # existing things
34 s.difference_update(intersection) # new things
38 # Add new class for new things
40 things.update(difference)
86 """Returns the set of all things known so far.
95 """Returns the mapping from things to their class set.
120 In other words, this function classifies all the things present in
122 things are a member of.