]> granicus.if.org Git - python/commitdiff
Copyright year change.
authorVinay Sajip <vinay_sajip@yahoo.co.uk>
Fri, 20 Feb 2004 13:16:36 +0000 (13:16 +0000)
committerVinay Sajip <vinay_sajip@yahoo.co.uk>
Fri, 20 Feb 2004 13:16:36 +0000 (13:16 +0000)
Corrections to comments.
Added RESET_ERROR definition.

Lib/logging/config.py

index 933bdc7afc3c02d1f04338676616533b8721511e..b6b7a450c0c27ccba3149cef7ee433d3feb29229 100644 (file)
@@ -19,9 +19,9 @@ Logging package for Python. 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
-information is not available unless 'inspect' is.
+information is not available unless 'sys._getframe()' is.
 
-Copyright (C) 2001-2002 Vinay Sajip. All Rights Reserved.
+Copyright (C) 2001-2004 Vinay Sajip. All Rights Reserved.
 
 To use, simply 'import logging' and log away!
 """
@@ -33,6 +33,11 @@ from SocketServer import ThreadingTCPServer, StreamRequestHandler
 
 DEFAULT_LOGGING_CONFIG_PORT = 9030
 
+if sys.platform == "win32":
+    RESET_ERROR = 10054   #WSAECONNRESET
+else:
+    RESET_ERROR = 104     #ECONNRESET
+
 #
 #   The following code implements a socket listener for on-the-fly
 #   reconfiguration of logging.