1. 04 Eyl, 2015 3 kayıt (commit)
  2. 03 Eyl, 2015 32 kayıt (commit)
  3. 02 Eyl, 2015 5 kayıt (commit)
    • Victor Stinner's avatar
      Rewrite eintr_tester.py to avoid os.fork() · be923ac9
      Victor Stinner yazdı
      eintr_tester.py calls signal.setitimer() to send signals to the current process
      every 100 ms. The test sometimes hangs on FreeBSD. Maybe there is a race
      condition in the child process after fork(). It's unsafe to run arbitrary code
      after fork().
      
      This change replace os.fork() with a regular call to subprocess.Popen(). This
      change avoids the risk of having a child process which continue to execute
      eintr_tester.py instead of exiting. It also ensures that the child process
      doesn't inherit unexpected file descriptors by mistake.
      
      Since I'm unable to reproduce the issue on FreeBSD, I will have to watch
      FreeBSD buildbots to check if the issue is fixed or not.
      
      Remove previous attempt to debug: remove call to
      faulthandler.dump_traceback_later().
      be923ac9
    • Victor Stinner's avatar
      Merge 3.5 (monotonic) · 5a682c9c
      Victor Stinner yazdı
      5a682c9c
    • Victor Stinner's avatar
      oops, rename pymonotonic_new() to pymonotonic() · 5ad5821d
      Victor Stinner yazdı
      I was not supposed to commit the function with the name pymonotonic_new(). I
      forgot to rename it.
      5ad5821d
    • Victor Stinner's avatar
      Issue #24707: Remove assertion in monotonic clock · c3c616c3
      Victor Stinner yazdı
      Don't check anymore at runtime that the monotonic clock doesn't go backward.
      Yes, it happens. It occurs sometimes each month on a Debian buildbot slave
      running in a VM.
      
      The problem is that Python cannot do anything useful if a monotonic clock goes
      backward. It was decided in the PEP 418 to not fix the system, but only expose
      the clock provided by the OS.
      c3c616c3
    • Victor Stinner's avatar
      Merge 3.5 (test_warnings) · 40e47f69
      Victor Stinner yazdı
      40e47f69