commit | 7c404a4bf7b9061ee013bef361b6eba951218d80 | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Tue Dec 21 23:46:34 2004 +0000 |
committer | Fred Drake <fdrake@acm.org> | Tue Dec 21 23:46:34 2004 +0000 |
tree | 921da1debae9f4ac526fc818426d6ba55896bb8f | |
parent | e57d7b179a6171b013030c6751e8c0999251200b [diff] [blame] |
add __file__ to the globals available for tests loaded via DocFileSuite; this is useful for locating supporting data files, just as it is in Python modules
diff --git a/Lib/test/test_doctest3.txt b/Lib/test/test_doctest3.txt new file mode 100644 index 0000000..54a96d5 --- /dev/null +++ b/Lib/test/test_doctest3.txt
@@ -0,0 +1,5 @@ + +Here we check that `__file__` is provided: + + >>> type(__file__) + <type 'str'>