1. 11 Nis, 2002 1 kayıt (commit)
  2. 10 Nis, 2002 1 kayıt (commit)
  3. 15 Ock, 2001 1 kayıt (commit)
  4. 30 Haz, 2000 1 kayıt (commit)
  5. 28 Şub, 2000 1 kayıt (commit)
  6. 04 Şub, 2000 1 kayıt (commit)
    • Guido van Rossum's avatar
      The third and final doc-string sweep by Ka-Ping Yee. · e7b146fb
      Guido van Rossum yazdı
      The attached patches update the standard library so that all modules
      have docstrings beginning with one-line summaries.
      
      A new docstring was added to formatter.  The docstring for os.py
      was updated to mention nt, os2, ce in addition to posix, dos, mac.
      e7b146fb
  7. 10 Agu, 1998 1 kayıt (commit)
  8. 31 Tem, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      Introducing randrange([start,] stop [,step]) -- same as · 187f1542
      Guido van Rossum yazdı
      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
  9. 29 May, 1998 1 kayıt (commit)
  10. 16 Şub, 1998 1 kayıt (commit)
    • Guido van Rossum's avatar
      Andrew Kuchling writes: · 358473c1
      Guido van Rossum yazdı
      First, the RNG in whrandom.py sucks if you let it seed itself from the time.
      The problem is the line:
      			t = int((t&0xffffff) | (t>>24))
      Since it ORs the two parts together, the resulting value has mostly
      ON bits.  Change | to ^, and you don't lose any randomness.
      358473c1
  11. 10 Tem, 1997 1 kayıt (commit)
  12. 02 Ock, 1997 1 kayıt (commit)
  13. 21 Eki, 1996 1 kayıt (commit)
  14. 14 Eyl, 1994 1 kayıt (commit)
  15. 29 Agu, 1994 1 kayıt (commit)
  16. 01 Agu, 1994 1 kayıt (commit)
  17. 17 Ara, 1993 1 kayıt (commit)
  18. 04 Ock, 1993 1 kayıt (commit)
  19. 18 Eki, 1992 1 kayıt (commit)
  20. 13 Eki, 1990 1 kayıt (commit)