Home | History | Annotate | Download | only in python2.7

Lines Matching refs:yield

149             yield i%7
153 Return an iterator for one month. The iterator will yield datetime.date
154 values and will always iterate through complete weeks, so it will yield
163 yield date
174 Like itermonthdates(), but will yield (day number, weekday number)
179 yield (0, date.weekday())
181 yield (date.day, date.weekday())
185 Like itermonthdates(), but will yield day numbers. For days outside
190 yield 0
192 yield date.day