- 08 Kas, 2004 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
inflexibile.
-
- 16 Nis, 2004 1 kayıt (commit)
-
-
Skip Montanaro yazdı
from Felix Wiemann. Closes patch #934971.
-
- 10 Nis, 2004 1 kayıt (commit)
-
-
Skip Montanaro yazdı
globaltrace_countfuncs() into file_module_function_of(). In that function use Michael Hudson's suggestion of gc.get_referrers() to back up from the code object to a function, then to a class's dict and finally to a class object if one exists.
-
- 07 Nis, 2004 1 kayıt (commit)
-
-
Skip Montanaro yazdı
relationships at program exit. Output is a bit prettier than that for --listfuncs but won't parse as easily using downstream postprocessing tools.
-
- 19 Şub, 2004 1 kayıt (commit)
-
-
Guido van Rossum yazdı
right; (2) write_results_file() didn't return a tuple of two ints when it couldn't create the file. Will backport.
-
- 12 Şub, 2004 1 kayıt (commit)
-
-
Walter Dörwald yazdı
From SF patch #852334.
-
- 02 Kas, 2003 1 kayıt (commit)
-
-
Raymond Hettinger yazdı
(Contributed by George Yoshida.)
-
- 14 Eki, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Remove fallback code that tries to read marshal data from a results file, since this module never writes marshal data.
-
- 10 Eki, 2003 2 kayıt (commit)
-
-
Guido van Rossum yazdı
-
Guido van Rossum yazdı
module existed in the current directory. Fix this. Backport candidate (I presume).
-
- 15 Tem, 2003 1 kayıt (commit)
-
-
Walter Dörwald yazdı
-
- 07 Tem, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 27 Haz, 2003 2 kayıt (commit)
-
-
Fred Drake yazdı
-
Skip Montanaro yazdı
-
- 26 Haz, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
Fix bug in computation of coverage percentage: Only count a line if it was executed or if we print the >>>>>> marker.
-
- 24 Nis, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 22 Nis, 2003 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
directory.
-
- 21 Nis, 2003 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
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.
-
- 27 Şub, 2003 1 kayıt (commit)
-
-
Guido van Rossum yazdı
-
- 19 Şub, 2003 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 18 Şub, 2003 1 kayıt (commit)
-
-
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.
-
- 03 Şub, 2003 1 kayıt (commit)
-
-
Skip Montanaro yazdı
-
- 11 Ara, 2002 2 kayıt (commit)
-
-
Jeremy Hylton yazdı
Replace use of homebrew boolean with True/False. Reflow lots more long lines.
-
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.
-
- 22 Kas, 2002 1 kayıt (commit)
-
-
Martin v. Löwis yazdı
-
- 11 Eyl, 2002 1 kayıt (commit)
-
-
http://www.python.org/sf/572113Walter Dörwald yazdı
(with one small bugfix in bgen/bgen/scantools.py) This replaces string module functions with string methods for the stuff in the Tools directory. Several uses of string.letters etc. are still remaining.
-
- 15 Agu, 2002 1 kayıt (commit)
-
-
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.
-
- 25 Tem, 2002 1 kayıt (commit)
-
-
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
-
- 28 Kas, 2001 1 kayıt (commit)
-
-
Guido van Rossum yazdı
the usage docs: (a) align properly, (b) explain properly.
-
- 08 Eki, 2001 1 kayıt (commit)
-
-
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.
-
- 08 May, 2001 1 kayıt (commit)
-
-
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)
-
- 17 Ock, 2001 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 18 Eyl, 2000 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-
- 03 Agu, 2000 1 kayıt (commit)
-
-
Jeremy Hylton yazdı
-