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

Lines Matching full:istep

220         istep = int(step)
221 if istep != step:
223 if istep > 0:
224 n = (width + istep - 1) // istep
225 elif istep < 0:
226 n = (width + istep + 1) // istep
234 return istart + istep*self._randbelow(n)
235 return istart + istep*int(self.random() * n)