1. 03 Tem, 2013 1 kayıt (commit)
    • Victor Stinner's avatar
      test_faulthandler: skip test_read_null() on AIX · 330426cf
      Victor Stinner yazdı
      AIX maps the first page of memory at address zero as valid, read-only.  Reading
      NULL is not a fault on AIX. This is utilized by IBM compiler optimizations.
      One speculatively can indirect through a pointer which may be null without
      first testing if null and defer the test before using the value.
      330426cf
  2. 25 Haz, 2013 1 kayıt (commit)
  3. 17 Haz, 2013 1 kayıt (commit)
  4. 13 Haz, 2013 1 kayıt (commit)
  5. 05 Mar, 2013 2 kayıt (commit)
  6. 23 Eyl, 2012 1 kayıt (commit)
  7. 22 Eyl, 2012 1 kayıt (commit)
  8. 01 Agu, 2012 1 kayıt (commit)
  9. 31 Tem, 2012 1 kayıt (commit)
  10. 06 May, 2012 1 kayıt (commit)
  11. 01 Eyl, 2011 1 kayıt (commit)
  12. 08 Agu, 2011 1 kayıt (commit)
  13. 13 Tem, 2011 1 kayıt (commit)
  14. 29 Haz, 2011 2 kayıt (commit)
  15. 01 Haz, 2011 1 kayıt (commit)
  16. 07 May, 2011 1 kayıt (commit)
    • Victor Stinner's avatar
      faulthandler: dump all threads by default · 7bba62fd
      Victor Stinner yazdı
       * Set the default value of all_threads arguments to True
       * Py_FatalError() dumps all threads, instead of only the current thread
      
      Dump only the current thread is not reliable. In some cases, Python is unable
      to retrieve the state of the current thread and so is unable to dump the
      traceback. faulthandler keeps a reference to the interpreter and so is always
      able to dump the traceback of all threads.
      7bba62fd
  17. 08 Nis, 2011 2 kayıt (commit)
  18. 07 Nis, 2011 1 kayıt (commit)
  19. 04 Nis, 2011 1 kayıt (commit)
  20. 03 Nis, 2011 2 kayıt (commit)
    • Victor Stinner's avatar
    • Victor Stinner's avatar
      test_faulthandler: fix regex on the check_dump_traceback_threads() traceback · 1b3241fa
      Victor Stinner yazdı
      The traceback may contain "_is_owned":
      
      Thread 0x40962b90:
        File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/threading.py", line 220 in _is_owned
        File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/threading.py", line 227 in wait
        File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/threading.py", line 421 in wait
        File "<string>", line 23 in run
        File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/threading.py", line 735 in _bootstrap_inner
        File "/srv/buildbot/buildarea/3.x.bolen-ubuntu/build/Lib/threading.py", line 708 in _bootstrap
      
      Current thread XXX:
        File "<string>", line 10 in dump
        File "<string>", line 28 in <module>
      1b3241fa
  21. 01 Nis, 2011 3 kayıt (commit)
  22. 31 Mar, 2011 6 kayıt (commit)
  23. 30 Mar, 2011 1 kayıt (commit)