mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
Minor documentation changes
This commit is contained in:
parent
fb0521f153
commit
3f74284e1b
3 changed files with 11 additions and 9 deletions
|
@ -36,8 +36,8 @@ except ImportError:
|
||||||
|
|
||||||
__author__ = "Vinay Sajip <vinay_sajip@red-dove.com>"
|
__author__ = "Vinay Sajip <vinay_sajip@red-dove.com>"
|
||||||
__status__ = "beta"
|
__status__ = "beta"
|
||||||
__version__ = "0.4.9.1"
|
__version__ = "0.4.9.2"
|
||||||
__date__ = "21 February 2004"
|
__date__ = "28 February 2004"
|
||||||
|
|
||||||
#---------------------------------------------------------------------------
|
#---------------------------------------------------------------------------
|
||||||
# Miscellaneous module data
|
# Miscellaneous module data
|
||||||
|
@ -723,8 +723,8 @@ class FileHandler(StreamHandler):
|
||||||
class PlaceHolder:
|
class PlaceHolder:
|
||||||
"""
|
"""
|
||||||
PlaceHolder instances are used in the Manager logger hierarchy to take
|
PlaceHolder instances are used in the Manager logger hierarchy to take
|
||||||
the place of nodes for which no loggers have been defined [FIXME add
|
the place of nodes for which no loggers have been defined. This class is
|
||||||
example].
|
intended for internal use only and not as part of the public API.
|
||||||
"""
|
"""
|
||||||
def __init__(self, alogger):
|
def __init__(self, alogger):
|
||||||
"""
|
"""
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# Copyright 2001-2002 by Vinay Sajip. All Rights Reserved.
|
# Copyright 2001-2004 by Vinay Sajip. All Rights Reserved.
|
||||||
#
|
#
|
||||||
# Permission to use, copy, modify, and distribute this software and its
|
# Permission to use, copy, modify, and distribute this software and its
|
||||||
# documentation for any purpose and without fee is hereby granted,
|
# documentation for any purpose and without fee is hereby granted,
|
||||||
|
@ -15,8 +15,9 @@
|
||||||
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Logging package for Python. Based on PEP 282 and comments thereto in
|
Configuration functions for the logging package for Python. The core package
|
||||||
comp.lang.python, and influenced by Apache's log4j system.
|
is based on PEP 282 and comments thereto in comp.lang.python, and influenced
|
||||||
|
by Apache's log4j system.
|
||||||
|
|
||||||
Should work under Python versions >= 1.5.2, except that source line
|
Should work under Python versions >= 1.5.2, except that source line
|
||||||
information is not available unless 'sys._getframe()' is.
|
information is not available unless 'sys._getframe()' is.
|
||||||
|
|
|
@ -15,8 +15,9 @@
|
||||||
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
# OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
|
|
||||||
"""
|
"""
|
||||||
Logging package for Python. Based on PEP 282 and comments thereto in
|
Additional handlers for the logging package for Python. The core package is
|
||||||
comp.lang.python, and influenced by Apache's log4j system.
|
based on PEP 282 and comments thereto in comp.lang.python, and influenced by
|
||||||
|
Apache's log4j system.
|
||||||
|
|
||||||
Should work under Python versions >= 1.5.2, except that source line
|
Should work under Python versions >= 1.5.2, except that source line
|
||||||
information is not available unless 'sys._getframe()' is.
|
information is not available unless 'sys._getframe()' is.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue