1. 25 Nis, 2017 4 kayıt (commit)
  2. 24 Nis, 2017 6 kayıt (commit)
  3. 23 Nis, 2017 1 kayıt (commit)
  4. 22 Nis, 2017 4 kayıt (commit)
  5. 21 Nis, 2017 10 kayıt (commit)
  6. 20 Nis, 2017 13 kayıt (commit)
  7. 19 Nis, 2017 2 kayıt (commit)
    • Victor Stinner's avatar
      regrtest: always show before/after of modified env (#1192) · ec4b1723
      Victor Stinner yazdı
      Buildbots don't run tests with -vv and so only log "xxx was modified
      by test_xxx" which is not enough to debug such random issue. In many
      cases, I'm unable to reproduce the warning and so unable to fix it.
      
      Always logging the value before and value after should help to debug
      such warning on buildbots.
      ec4b1723
    • Victor Stinner's avatar
      Fix/optimize test_asyncore.test_quick_connect() (#1188) · 7b9619ae
      Victor Stinner yazdı
      Don't use addCleanup() in test_quick_connect() because it keeps the
      Thread object alive and so @reap_threads fails on its timeout of 1
      second. "./python -m test -v test_asyncore -m test_quick_connect"
      now takes 185 ms, instead of 11 seconds.
      
      Other minor changes:
      
      * Use "with sock:" to close the socket instead of
        try/finally: sock.close()
      * Use self.skipTest() in test_quick_connect() to remove one
        indentation level and notice user that the test is specific to
        AF_INET and AF_INET6
      7b9619ae