1. 29 Agu, 2003 6 kayıt (commit)
  2. 28 Agu, 2003 3 kayıt (commit)
  3. 27 Agu, 2003 4 kayıt (commit)
  4. 26 Agu, 2003 1 kayıt (commit)
    • Jason Tishler's avatar
      test_largefile can leave its temp file open if one of many tests fail. On · 063606a0
      Jason Tishler yazdı
      platforms (e.g., Cygwin) that are "particular" about open files, this will
      cause other regression tests that use the same temp file to fail:
      
          $ ./python.exe -E -tt Lib/test/regrtest.py -l
          test_largefile test_mmap test_mutants
          test_largefile
          test test_largefile failed -- got -1794967295L, but expected 2500000001L
          test_mmap
          test test_mmap crashed -- exceptions.IOError: [Errno 13] Permission denied: '@test'
          test_mutants
          test test_mutants crashed -- exceptions.IOError: [Errno 13] Permission denied: '@test'
      
      This patch solves the problem by adding missing "try/finally" blocks. Note
      that the "large" size of this patch is due to many white space changes --
      otherwise, the patch is small.
      
      I tested this patch under Red Hat Linux 8.0 too.
      063606a0
  5. 25 Agu, 2003 5 kayıt (commit)
  6. 23 Agu, 2003 3 kayıt (commit)
  7. 20 Agu, 2003 2 kayıt (commit)
  8. 19 Agu, 2003 6 kayıt (commit)
  9. 18 Agu, 2003 3 kayıt (commit)
  10. 17 Agu, 2003 2 kayıt (commit)
    • Raymond Hettinger's avatar
    • Raymond Hettinger's avatar
      Improvements to set.py: · 6a180127
      Raymond Hettinger yazdı
      * Relaxed the argument restrictions for non-operator methods.  They now
        allow any iterable instead of requiring a set.  This makes the module
        a little easier to use and paves the way for an efficient C
        implementation which can take better advantage of iterable arguments
        while screening out immutables.
      
      * Deprecated Set.update() because it now duplicates Set.union_update()
      
      * Adapted the tests and docs to include the above changes.
      
      * Added more test coverage including testing identities and checking
        to make sure non-restartable generators work as arguments.
      
      Will backport to Py2.3.1 so that the interface remains consistent
      across versions.  The deprecation of update() will be changed to
      a FutureWarning.
      6a180127
  11. 16 Agu, 2003 3 kayıt (commit)
  12. 15 Agu, 2003 2 kayıt (commit)