diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-12 00:43:29 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2007-08-12 00:43:29 +0000 |
commit | 016880229a369a3fb419f3eed28b6db7c342fe71 (patch) | |
tree | 9b11de5c197bc556dd515e035327673765cd4871 /Doc/lib/libdoctest.tex | |
parent | 41eaedd3613cebc83e6b9925499369992c7a7770 (diff) | |
download | cpython-git-016880229a369a3fb419f3eed28b6db7c342fe71.tar.gz |
Kill execfile(), use exec() instead
Diffstat (limited to 'Doc/lib/libdoctest.tex')
-rw-r--r-- | Doc/lib/libdoctest.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/lib/libdoctest.tex b/Doc/lib/libdoctest.tex index 5e28c2acc0..9143b8486b 100644 --- a/Doc/lib/libdoctest.tex +++ b/Doc/lib/libdoctest.tex @@ -1828,7 +1828,7 @@ print doctest.testsource(a, "a.f") via \function{\refmodule{pdb}.post_mortem()}, passing the traceback object from the unhandled exception. If \var{pm} is not specified, or is false, the script is run under the debugger from the start, via passing an - appropriate \function{execfile()} call to \function{\refmodule{pdb}.run()}. + appropriate \function{exec()} call to \function{\refmodule{pdb}.run()}. \versionadded{2.3} |