[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: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



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

2010-06-01 Thread Ionut Turturica

Ionut Turturica jono...@yahoo.com 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 point...

--

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue8797
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1550273] Fix numerous bugs in unittest

2009-08-19 Thread Ionut Turturica

Ionut Turturica jono...@yahoo.com 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 _breadth_first() method that parses the TestSuites.

--
Added file: http://bugs.python.org/file14744/test_pybug.py

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1550273
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue1550273] Fix numerous bugs in unittest

2009-08-17 Thread Ionut Turturica

Ionut Turturica jono...@yahoo.com 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 of self is other ?

After I upgraded to 2.6 I started to have some issues with a breadth
first iterator for a TestSuite and I tracked them down to this eq method.

--
nosy: +jonozzz

___
Python tracker rep...@bugs.python.org
http://bugs.python.org/issue1550273
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[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.__connection.sock.recv(1,
+socket.MSG_PEEK | 
+socket.MSG_DONTWAIT)

Good job with this patch. It would've been interesting to have a flag to
switch to old http1.0 and see the differences in terms of performance.

Ionut

--
nosy: +jonozzz
type:  - behavior

___
Python tracker [EMAIL PROTECTED]
http://bugs.python.org/issue1767370
___
___
Python-bugs-list mailing list
Unsubscribe: 
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com