1. 06 Aug, 1998 3 commits
  2. 05 Aug, 1998 11 commits
  3. 04 Aug, 1998 20 commits
  4. 03 Aug, 1998 2 commits
  5. 01 Aug, 1998 1 commit
  6. 31 Jul, 1998 3 commits
    • Guido van Rossum's avatar
      33575614
    • Guido van Rossum's avatar
      Introducing randrange([start,] stop [,step]) -- same as · 187f1542
      Guido van Rossum authored
      choice(range(start, stop, step)) but faster.  This addresses the
      problem that randint() was accidentally defined as taking an inclusive
      range (how unpythonic).
      
      The code is longish because Tim Peters insisted that it reject
      non-integral arguments while I insisted that it be not much slower
      than randint(); the compromise satisfies both but is somewhat
      convoluted.
      
      Also changed randint() to be implemented through randrange().  This is
      a semantic change because old randint() didn't test its arguments for
      validity.  (It also makes randrange() win any contest with randint()
      :-)
      187f1542
    • Jack Jansen's avatar
      Use buildtools where appropriate. · 490ec9c8
      Jack Jansen authored
      Build BuildApplication applet too.
      490ec9c8