- 06 Mar, 2007 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
using "python -m doctest [-v] filename ...".
-
- 29 Agu, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 27 Tem, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
lost that tests are sorted by name before being run. ``DocTestFinder`` has been changed to sort the list of tests it returns.
-
- 12 Haz, 2006 1 kayıt (commit)
-
-
Neal Norwitz yazdı
-
- 05 Haz, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
argument. A lot of hair went into supporting that!
-
- 30 May, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 28 May, 2006 2 kayıt (commit)
-
-
Armin Rigo yazdı
Remove various dependencies on dictionary order in the standard library tests, and one (clearly an oversight, potentially critical) in the standard library itself - base64.py. Remaining open issues: * test_extcall is an output test, messy to make robust * tarfile.py has a potential bug here, but I'm not familiar enough with this code. Filed in as SF bug #1496501. * urllib2.HTTPPasswordMgr() returns a random result if there is more than one matching root path. I'm asking python-dev for clarification...
-
George Yoshida yazdı
Contributed by Bjorn Tillenius.
-
- 10 May, 2006 2 kayıt (commit)
-
-
Georg Brandl yazdı
stdout arguments, making it possible to redirect input and output for remote debugging.
-
Tim Peters yazdı
shouldn't create a new flag when `name` is already the name of an option flag.
-
- 25 Nis, 2006 1 kayıt (commit)
-
-
Tim Peters yazdı
Edward Loper.
-
- 11 Nis, 2006 1 kayıt (commit)
-
-
Phillip J. Eby yazdı
to work correctly with modules imported from zipfiles or via other PEP 302 __loader__ objects. Tests and doc updates are included.
-
- 26 Haz, 2005 2 kayıt (commit)
-
-
Georg Brandl yazdı
-
Georg Brandl yazdı
-
- 28 Mar, 2005 1 kayıt (commit)
-
-
Tim Peters yazdı
Patch by Ilya Sandler. Bugfix candidate.
-
- 21 Ara, 2004 1 kayıt (commit)
-
-
Fred Drake yazdı
this is useful for locating supporting data files, just as it is in Python modules
-
- 08 Kas, 2004 3 kayıt (commit)
-
-
Tim Peters yazdı
-
Tim Peters yazdı
trace_dispatch() result in a more obvious, and more robust way.
-
Tim Peters yazdı
showing that doctest's pdb.set_trace() support was dramatically broken. doctest.py _OutputRedirectingPdb.trace_dispatch(): Return a local trace function instead of (implicitly) None. Else interaction with pdb was bizarre, noticing only 'call' events. Amazingly, the existing set_trace() tests didn't care.
-
- 13 Eki, 2004 1 kayıt (commit)
-
-
Jim Fulton yazdı
non-ascii characters.
-
- 28 Eyl, 2004 2 kayıt (commit)
-
-
Edward Loper yazdı
request. Tim says that "correct 'fuzzy' comparison of floats cannot be automated." (The motivation behind adding the new option was verifying interactive examples in Python's latex documentation; several such examples use numbers that don't print consistently on different platforms.)
-
Edward Loper yazdı
the expected output to match corresponding number literals in the actual output if their values are equal (to ten digits of precision).
-
- 27 Eyl, 2004 1 kayıt (commit)
-
-
Edward Loper yazdı
-
- 26 Eyl, 2004 3 kayıt (commit)
-
-
Tim Peters yazdı
the process of writing docs for the other "missing" debug support functions.
-
Tim Peters yazdı
"soon", after I repair the LaTeX I somehow damaged.
-
Tim Peters yazdı
unittest support function, from the public interface. If they're not documented, they shouldn't be public.
-
- 25 Eyl, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
and the LaTeX docs are in increasingly good shape.
-
- 21 Eyl, 2004 1 kayıt (commit)
-
-
Edward Loper yazdı
- Simplified code to find names for file-based tests.
-
- 20 Eyl, 2004 1 kayıt (commit)
-
-
Tim Peters yazdı
-
- 19 Eyl, 2004 1 kayıt (commit)
-
-
Edward Loper yazdı
all examples in a given text file. (analagous to "testmod") - Minor docstring fixes. - Added module_relative parameter to DocTestFile/DocTestSuite, which controls whether paths are module-relative & os-independent, or os-specific.
-
- 18 Eyl, 2004 1 kayıt (commit)
-
-
Edward Loper yazdı
- Fixed bug in handling of absolute paths. - If run from an interactive session, make paths relative to the directory containing sys.argv[0] (since __main__ doesn't have a __file__ attribute).
-
- 13 Eyl, 2004 4 kayıt (commit)
-
-
Tim Peters yazdı
with default False for testmod(). The real point of introducing this was so that output from doctest.master.summarize() would be the same as in 2.3, and doctest.master in 2.4 is a backward-compatability hack used only by testmod().
-
Edward Loper yazdı
controls whether tests are included for objects with empty docstrings. Defaults to True, to match the behavior of Python 2.3.
-
Tim Peters yazdı
doctest always promised to stick "__test__" in the name. That got broken. Now it's fixed again.
-
Tim Peters yazdı
-
- 12 Eyl, 2004 2 kayıt (commit)
-
-
Tim Peters yazdı
the "backward compatibility" here was a joke.
-
Tim Peters yazdı
was passed.
-
- 04 Eyl, 2004 2 kayıt (commit)
-
-
Tim Peters yazdı
in the new docs. DocTestRunner.__run: Separate the determination of the example outcome from reporting that outcome, to squash brittle code duplication and excessive nesting.
-
Tim Peters yazdı
-