1. 23 Ock, 2015 1 kayıt (commit)
    • Gregory P. Smith's avatar
      Only pass -E to the child interpreter if our interpreter was running in that · fe7c5d6e
      Gregory P. Smith yazdı
      mode.  Explicitly remove the PYTHONFAULTHANDLER environment variable before
      launching a child interpreter when its presence would impact the test (the
      reason -E was being used in the first place).
      
      This enables running the test in an environment where other Python environment
      variables must be set in order for things to run (such as using PYTHONHOME to
      tell an embedded interpreter where it should think it lives).
      fe7c5d6e
  2. 30 Eyl, 2014 1 kayıt (commit)
  3. 24 Eyl, 2014 1 kayıt (commit)
  4. 10 Agu, 2014 1 kayıt (commit)
  5. 14 May, 2014 1 kayıt (commit)
  6. 21 Eki, 2013 1 kayıt (commit)
  7. 08 Eki, 2013 1 kayıt (commit)
  8. 08 Eyl, 2013 1 kayıt (commit)
  9. 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
  10. 25 Haz, 2013 1 kayıt (commit)
  11. 17 Haz, 2013 1 kayıt (commit)
  12. 13 Haz, 2013 1 kayıt (commit)
  13. 05 Mar, 2013 2 kayıt (commit)
  14. 23 Eyl, 2012 1 kayıt (commit)
  15. 22 Eyl, 2012 1 kayıt (commit)
  16. 01 Agu, 2012 1 kayıt (commit)
  17. 31 Tem, 2012 1 kayıt (commit)
  18. 06 May, 2012 1 kayıt (commit)
  19. 01 Eyl, 2011 1 kayıt (commit)
  20. 08 Agu, 2011 1 kayıt (commit)
  21. 13 Tem, 2011 1 kayıt (commit)
  22. 29 Haz, 2011 2 kayıt (commit)
  23. 01 Haz, 2011 1 kayıt (commit)
  24. 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
  25. 08 Nis, 2011 2 kayıt (commit)
  26. 07 Nis, 2011 1 kayıt (commit)
  27. 04 Nis, 2011 1 kayıt (commit)
  28. 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
  29. 01 Nis, 2011 3 kayıt (commit)
  30. 31 Mar, 2011 5 kayıt (commit)