[issue34271] Please support logging of SSL master secret by env variable SSLKEYLOGFILE

2018-07-31 Thread Ionut Turturica
Change by Ionut Turturica : -- nosy: +jonozzz ___ Python tracker <https://bugs.python.org/issue34271> ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue8797] urllib2 basicauth broken in 2.6.5: RuntimeError: maximum recursion depth exceeded in cmp

2010-06-01 Thread Ionut Turturica
Ionut Turturica added the comment: Why would you waste the time and resources to test 5 times for a known to be wrong credential ?! This is not like in a browser where the user is presented with a dialog box 5 times and he/she can try different credentials. I don't see the

[issue1550273] Fix numerous bugs in unittest

2009-08-19 Thread Ionut Turturica
Ionut Turturica added the comment: I keep trying to repro this on a smaller scale TestSuite but without any success. The whole test framework has around 300 tests and I can't really upload it. In the mean time I changed the TestSuite's __eq__ back to identity. I will attach the _bre

[issue1550273] Fix numerous bugs in unittest

2009-08-17 Thread Ionut Turturica
Ionut Turturica added the comment: I am a little bit concerned with the new __eq__: def __eq__(self, other): if type(self) is not type(other): return False return self._tests == other._tests Why did you use "self._tests == other._tests" instead o

[issue1767370] Make xmlrpc use HTTP/1.1 and keepalive

2008-09-01 Thread Ionut Turturica
Ionut Turturica <[EMAIL PROTECTED]> added the comment: Note that win32 Python's socket module doesn't have a MSG_DONTWAIT constant defined. So the following code will fail on windows machines. +self.__connec