diff options
-rw-r--r-- | Doc/library/atexit.rst | 4 | ||||
-rw-r--r-- | Doc/library/bsddb.rst | 2 | ||||
-rw-r--r-- | Doc/library/mhlib.rst | 2 | ||||
-rw-r--r-- | Doc/library/multifile.rst | 2 | ||||
-rw-r--r-- | Doc/library/readline.rst | 2 | ||||
-rw-r--r-- | Doc/library/robotparser.rst | 2 | ||||
-rw-r--r-- | Doc/library/telnetlib.rst | 2 | ||||
-rw-r--r-- | Doc/library/urllib.rst | 2 | ||||
-rw-r--r-- | Lib/test/README | 11 |
9 files changed, 10 insertions, 19 deletions
diff --git a/Doc/library/atexit.rst b/Doc/library/atexit.rst index 35bd3fe..8b33d5c 100644 --- a/Doc/library/atexit.rst +++ b/Doc/library/atexit.rst @@ -4,8 +4,8 @@ .. module:: atexit :synopsis: Register and execute cleanup functions. -.. moduleauthor:: Skip Montanaro <skip@mojam.com> -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. moduleauthor:: Skip Montanaro <skip@pobox.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> .. versionadded:: 2.0 diff --git a/Doc/library/bsddb.rst b/Doc/library/bsddb.rst index 2bb5be4..5a8d379 100644 --- a/Doc/library/bsddb.rst +++ b/Doc/library/bsddb.rst @@ -4,7 +4,7 @@ .. module:: bsddb :synopsis: Interface to Berkeley DB database library -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> The :mod:`bsddb` module provides an interface to the Berkeley DB library. Users diff --git a/Doc/library/mhlib.rst b/Doc/library/mhlib.rst index 15d2b05..0dd5353 100644 --- a/Doc/library/mhlib.rst +++ b/Doc/library/mhlib.rst @@ -7,7 +7,7 @@ .. % LaTeX'ized from the comments in the module by Skip Montanaro -.. % <skip@mojam.com>. +.. % <skip@pobox.com>. The :mod:`mhlib` module provides a Python interface to MH folders and their contents. diff --git a/Doc/library/multifile.rst b/Doc/library/multifile.rst index 3e79229..0614b86 100644 --- a/Doc/library/multifile.rst +++ b/Doc/library/multifile.rst @@ -155,7 +155,7 @@ Finally, :class:`MultiFile` instances have two public instance variables: :class:`MultiFile` Example -------------------------- -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> :: diff --git a/Doc/library/readline.rst b/Doc/library/readline.rst index 8125862..2088299 100644 --- a/Doc/library/readline.rst +++ b/Doc/library/readline.rst @@ -5,7 +5,7 @@ .. module:: readline :platform: Unix :synopsis: GNU readline support for Python. -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> The :mod:`readline` module defines a number of functions to facilitate diff --git a/Doc/library/robotparser.rst b/Doc/library/robotparser.rst index 1a66955..2451799 100644 --- a/Doc/library/robotparser.rst +++ b/Doc/library/robotparser.rst @@ -4,7 +4,7 @@ .. module:: robotparser :synopsis: Loads a robots.txt file and answers questions about fetchability of other URLs. -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> .. index:: diff --git a/Doc/library/telnetlib.rst b/Doc/library/telnetlib.rst index 811d6b6..396560b 100644 --- a/Doc/library/telnetlib.rst +++ b/Doc/library/telnetlib.rst @@ -4,7 +4,7 @@ .. module:: telnetlib :synopsis: Telnet client class. -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> .. index:: single: protocol; Telnet diff --git a/Doc/library/urllib.rst b/Doc/library/urllib.rst index 81dd36f..5be69d1 100644 --- a/Doc/library/urllib.rst +++ b/Doc/library/urllib.rst @@ -369,7 +369,7 @@ Restrictions: URLopener Objects ----------------- -.. sectionauthor:: Skip Montanaro <skip@mojam.com> +.. sectionauthor:: Skip Montanaro <skip@pobox.com> :class:`URLopener` and :class:`FancyURLopener` objects have the following diff --git a/Lib/test/README b/Lib/test/README index 747d842..4509df4 100644 --- a/Lib/test/README +++ b/Lib/test/README @@ -3,7 +3,7 @@ Writing Python Regression Tests +++++++++++++++++++++++++++++++ :Author: Skip Montanaro -:Contact: skip@mojam.com +:Contact: skip@pobox.com Introduction ============ @@ -382,15 +382,6 @@ test_support provides the following useful objects: statement is *not* correct Python syntax. -Python and C statement coverage results are currently available at - - http://www.musi-cal.com/~skip/python/Python/dist/src/ - -As of this writing (July, 2000) these results are being generated nightly. -You can refer to the summaries and the test coverage output files to see -where coverage is adequate or lacking and write test cases to beef up the -coverage. - Some Non-Obvious regrtest Features ================================== * Automagic test detection: When you create a new test file |