1. 30 May, 2002 1 kayıt (commit)
  2. 23 May, 2002 1 kayıt (commit)
  3. 21 May, 2002 1 kayıt (commit)
  4. 16 May, 2002 1 kayıt (commit)
  5. 08 May, 2002 1 kayıt (commit)
  6. 23 Nis, 2002 1 kayıt (commit)
  7. 20 Nis, 2002 1 kayıt (commit)
  8. 19 Nis, 2002 1 kayıt (commit)
  9. 15 Nis, 2002 1 kayıt (commit)
  10. 12 Nis, 2002 2 kayıt (commit)
  11. 08 Nis, 2002 1 kayıt (commit)
  12. 29 Mar, 2002 1 kayıt (commit)
  13. 01 Mar, 2002 2 kayıt (commit)
    • Guido van Rossum's avatar
      SF patch 514641 (Naofumi Honda) - Negative ob_size of LongObjects · 2eb0b87d
      Guido van Rossum yazdı
      Due to the bizarre definition of _PyLong_Copy(), creating an instance
      of a subclass of long with a negative value could cause core dumps
      later on.  Unfortunately it looks like the behavior of _PyLong_Copy()
      is quite intentional, so the fix is more work than feels comfortable.
      
      This fix is almost, but not quite, the code that Naofumi Honda added;
      in addition, I added a test case.
      2eb0b87d
    • Guido van Rossum's avatar
      SF patch 517245 by Marc Recht. · 6f33250e
      Guido van Rossum yazdı
      Support GMP version >= 2.
      
      Bugfix candidate.
      6f33250e
  14. 28 Şub, 2002 2 kayıt (commit)
  15. 25 Şub, 2002 1 kayıt (commit)
  16. 26 Ock, 2002 2 kayıt (commit)
  17. 18 Ock, 2002 1 kayıt (commit)
  18. 12 Ock, 2002 1 kayıt (commit)
  19. 01 Ock, 2002 3 kayıt (commit)
  20. 28 Ara, 2001 1 kayıt (commit)
  21. 27 Ara, 2001 1 kayıt (commit)
  22. 20 Ara, 2001 2 kayıt (commit)
  23. 19 Ara, 2001 2 kayıt (commit)
  24. 13 Ara, 2001 1 kayıt (commit)
  25. 10 Ara, 2001 1 kayıt (commit)
  26. 08 Ara, 2001 1 kayıt (commit)
    • Guido van Rossum's avatar
      Patch supplied by Burton Radons for his own SF bug #487390: Modifying · 14648396
      Guido van Rossum yazdı
      type.__module__ behavior.
      
      This adds the module name and a dot in front of the type name in every
      type object initializer, except for built-in types (and those that
      already had this).  Note that it touches lots of Mac modules -- I have
      no way to test these but the changes look right.  Apologies if they're
      not.  This also touches the weakref docs, which contains a sample type
      object initializer.  It also touches the mmap test output, because the
      mmap type's repr is included in that output.  It touches object.h to
      put the correct description in a comment.
      14648396
  27. 07 Ara, 2001 1 kayıt (commit)
    • Tim Peters's avatar
      SF patch #489173: Make os.spawnv not block the interpreter, from · 25059d30
      Tim Peters yazdı
      Anthony Roach.
      Release the global interpreter lock around platform spawn calls.
      Bugfix candidate?  Hard to say; I favor "yes, bugfix".
      These clearly *should* have been releasing the GIL all along, if for no
      other reason than compatibility with the similar os.system().  But it's
      possible some program out there is (a) multithreaded, (b) calling a spawn
      function with P_WAIT, and (c) relying on the spawn call to block all their
      threads until the spawned program completes.  I think it's very unlikely
      anyone is doing that on purpose, but someone may be doing so by accident.
      25059d30
  28. 06 Ara, 2001 1 kayıt (commit)
  29. 04 Ara, 2001 1 kayıt (commit)
  30. 03 Ara, 2001 1 kayıt (commit)
  31. 27 Kas, 2001 1 kayıt (commit)
    • Tim Peters's avatar
      SF bug 485175: buffer overflow in traceback.c. · 6d20b43a
      Tim Peters yazdı
      Bugfix candidate.
      tb_displayline():  the sprintf format was choking off the file name, but
      used plain %s for the function name (which can be arbitrarily long).
      Limit both to 500 chars max.
      6d20b43a
  32. 31 Eki, 2001 1 kayıt (commit)