Exemple #1
0
 def number_gathered_as_word(self):
     return nice_number(self.number_gathered())
Exemple #2
0
 def number_as_word(self):
     return nice_number(self.number())
Exemple #3
0
 def number_as_word(self):
     return nice_number(self.number())
Exemple #4
0
 def number_gathered_as_word(self):
     return nice_number(self.number_gathered())
Exemple #5
0
    def number_as_word(self):
        """Returns the number of items in the set, spelling out the number if
        ten or below.  Forces the gathering of the items if necessary.

        """
        return nice_number(self.number())
Exemple #6
0
    def number_gathered_as_word(self):
        """Returns the number of items in the set, spelling out the number if
        ten or below.  Does not force the gathering of the items.

        """
        return nice_number(self.number_gathered())
Exemple #7
0
 def number_gathered_as_word(self):
     """Returns the number of elements in the list, spelling out the number if ten 
     or below.  Does not force the gathering of the elements."""
     return nice_number(self.number_gathered())