[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-08 Thread Florent Xicluna
Changes by Florent Xicluna florent.xicl...@gmail.com: Removed file: http://bugs.python.org/file16113/issue7092_test_support_v2.diff ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7092 ___

[issue7092] Test suite emits many DeprecationWarnings when -3 is enabled

2010-03-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Silence the last warnings, using check_py3k_warnings. But we could provide a smaller patch, if #7832 is fixed before. -- dependencies: +assertSameElements([0, 1, 1], [0, 0, 1]) does not fail Added file:

[issue7832] assertSameElements([0, 1, 1], [0, 0, 1]) does not fail

2010-03-08 Thread Florent Xicluna
Florent Xicluna florent.xicl...@gmail.com added the comment: Some real use case for the fixed behavior: - the patch for #7092 has a workaround to fix the comparison locally, both in test_decimal and test_set - test_cgi was changed, before noticing that SameElements has a flaw:

[issue7978] SocketServer doesn't handle syscall interruption

2010-03-08 Thread Vetoshkin Nikita
Vetoshkin Nikita nikita.vetosh...@gmail.com added the comment: Wrapping select in (taken from twisted sources) can help: def untilConcludes(f, *a, **kw): while True: try: return f(*a, **kw) except (IOError, OSError), e: if e.args[0] == errno.EINTR:

[issue8090] PEP 4 should say something about the standard library

2010-03-08 Thread Sjoerd Mullender
Sjoerd Mullender sjo...@acm.org added the comment: It was discussed on python-dev. It was suggested to submit a bug report on PEP 4. See http://mail.python.org/pipermail/python-dev/2010-February/097772.html. -- ___ Python tracker

<    1   2