[Python-checkins] python/dist/src/Lib/logging config.py, 1.7, 1.7.10.1

rhettinger at users.sourceforge.net rhettinger at users.sourceforge.net
Tue Sep 9 21:31:49 EDT 2003


Update of /cvsroot/python/python/dist/src/Lib/logging
In directory sc8-pr-cvs1:/tmp/cvs-serv23703/Lib/logging

Modified Files:
      Tag: release23-maint
	config.py 
Log Message:
SF #792649:  RESET_ERROR is not defined(logging module)



Index: config.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/logging/config.py,v
retrieving revision 1.7
retrieving revision 1.7.10.1
diff -C2 -d -r1.7 -r1.7.10.1
*** config.py	2 Mar 2003 20:47:29 -0000	1.7
--- config.py	10 Sep 2003 03:31:46 -0000	1.7.10.1
***************
*** 33,36 ****
--- 33,40 ----
  
  DEFAULT_LOGGING_CONFIG_PORT = 9030
+ if sys.platform == "win32":
+     RESET_ERROR = 10054   #WSAECONNRESET
+ else:
+     RESET_ERROR = 104     #ECONNRESET
  
  #





More information about the Python-checkins mailing list