Re: [Zope-dev] New Client.py bug(?) in 2.2.0 affects ZScheduler
29 Jul
2000
29 Jul
'00
12:20 a.m.
In Zope version 2.2.0b3 Client.py calls connect in httplib (in two different places) like this:
sock.connect(self.host,self.port)
In Zope version 2.2.0 (final) it's like this:
sock.connect((self.host,self.port))
In the latter case, Python complains:
TypeError: 'argument 1: ..., tuple found'
Does anyone know what was the motivation for the change in the syntax for the call to connect?
Should I drop this in the Collector?
It is of course a bug. I just was sent a patch to the Collector (http://classic.zope.org:8080/Collector/1480/view) because this bug is related to my previous patch #1427. -- Adam Karpierz karpierz@alpha.pl
9405
Age (days ago)
9405
Last active (days ago)
0 comments
1 participants
participants (1)
-
Adam Karpierz