1. 08 Kas, 2004 1 kayıt (commit)
  2. 16 Nis, 2004 1 kayıt (commit)
  3. 10 Nis, 2004 1 kayıt (commit)
  4. 07 Nis, 2004 1 kayıt (commit)
  5. 19 Şub, 2004 1 kayıt (commit)
  6. 12 Şub, 2004 1 kayıt (commit)
  7. 02 Kas, 2003 1 kayıt (commit)
  8. 14 Eki, 2003 1 kayıt (commit)
  9. 10 Eki, 2003 2 kayıt (commit)
  10. 15 Tem, 2003 1 kayıt (commit)
  11. 07 Tem, 2003 1 kayıt (commit)
  12. 27 Haz, 2003 2 kayıt (commit)
  13. 26 Haz, 2003 1 kayıt (commit)
  14. 24 Nis, 2003 1 kayıt (commit)
  15. 22 Nis, 2003 1 kayıt (commit)
  16. 21 Nis, 2003 2 kayıt (commit)
    • Jeremy Hylton's avatar
    • Jeremy Hylton's avatar
      Holistic refactoring. · 38732e10
      Jeremy Hylton yazdı
      Remove "." in coverage output for lines with comments.
      Silence complaints in coverage output about unexecuted docstrings.
      
      Eliminate use of inspect module in favor of direct access to frame and
      code objects.  We're in a trace function here:  Efficiency counts!
      
      Remove unused code.  Reflow long lines.
      
      Remove backwards compatibility for stored trace output from Zooko's
      experiment to add calledfuncs to the pickled dict.
      
      Move code to generate per-file coverage stats to a separate routine.
      
      Replace use of parser module with call to compile.
      38732e10
  17. 27 Şub, 2003 1 kayıt (commit)
  18. 19 Şub, 2003 1 kayıt (commit)
  19. 18 Şub, 2003 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Copy the trace module here from Tools/scripts. · 4edaa0d5
      Jeremy Hylton yazdı
      There are some problems with this module, but the tool works for
      simple tasks and no one else has volunteered a better code coverage
      tool.  Should cleanup and document before the beta release.
      4edaa0d5
  20. 03 Şub, 2003 1 kayıt (commit)
  21. 11 Ara, 2002 2 kayıt (commit)
    • Jeremy Hylton's avatar
      Correct buggy module docstring. · 6bf45c67
      Jeremy Hylton yazdı
      Replace use of homebrew boolean with True/False.
      
      Reflow lots more long lines.
      6bf45c67
    • Jeremy Hylton's avatar
      Fix one bug and reformat lots of code. · 89f1d6c0
      Jeremy Hylton yazdı
      The bug is a reference to co_first_lineno that should be
      co_firstlineno.  The only other substantial change is to speed up
      localtrace_count() by avoiding *costly* calls to inspect module.
      It's trivial to get the filename and lineno directly from the frame.
      
      Otherwise, delete commented out debug code and reflow very long lines.
      89f1d6c0
  22. 22 Kas, 2002 1 kayıt (commit)
  23. 11 Eyl, 2002 1 kayıt (commit)
  24. 15 Agu, 2002 1 kayıt (commit)
    • Michael W. Hudson's avatar
      This is my patch · dd32a91c
      Michael W. Hudson yazdı
      [ 587993 ] SET_LINENO killer
      
      Remove SET_LINENO.  Tracing is now supported by inspecting co_lnotab.
      
      Many sundry changes to document and adapt to this change.
      dd32a91c
  25. 25 Tem, 2002 1 kayıt (commit)
    • Skip Montanaro's avatar
      * runctx - fix a couple typos · 3a48ed94
      Skip Montanaro yazdı
      * globaltrace_lt - handle case where inspect.getmodulename doesn't return
        anything useful
      * localtrace_trace - handle case where inspect.getframeinfo doesn't return
        any context info
      
      I think both of the last two are caused by exec'd or eval'd code
      3a48ed94
  26. 28 Kas, 2001 1 kayıt (commit)
  27. 08 Eki, 2001 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Replace all instances of err.strerror with err. · eaa6e3c7
      Jeremy Hylton yazdı
      The strerror attribute contained only partial information about the
      exception and produced some very confusing error messages.  By passing
      err (the exception object itself) and letting it convert itself to a
      string, the error messages are better.
      eaa6e3c7
  28. 08 May, 2001 1 kayıt (commit)
    • Jeremy Hylton's avatar
      Fix several bugs and add two features. · 66a7e57c
      Jeremy Hylton yazdı
      Assertion error message had typos in arguments to string format.
      
      .cover files for modules in packages are now put in the right place.
      
      The code that generate .cover files seemed to prepend a "./" to many
      absolute paths, causing them to fail.  The code now checks explicitly
      for absolute paths and leaves them alone.
      
      In trace/coverage code, recover from case where module has no __name__
      attribute, when e.g. it is executed by PyRun_String().  In this case,
      assign modulename to None and hope for the best.  There isn't anywhere
      to write out coverage data for this code anyway.
      
      Also, replace several sys.stderr.writes with print >> sys.stderr.
      
      New features:
      
      -C/--coverdir dir: Generate .cover files in specified directory
      instead of in the directory where the .py file is.
      
      -s: Print a short summary of files coverred (# lines, % coverage,
      name)
      66a7e57c
  29. 17 Ock, 2001 1 kayıt (commit)
  30. 18 Eyl, 2000 1 kayıt (commit)
  31. 03 Agu, 2000 1 kayıt (commit)