[issue22784] test_asyncio fails without the ssl module

2014-11-05 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7e9e2b17ac6f by Antoine Pitrou in branch '3.4': Closes #22784: fix test_asyncio when the ssl module isn't available https://hg.python.org/cpython/rev/7e9e2b17ac6f New changeset 028c729714af by Antoine Pitrou in branch 'default': Closes #22784: fix t

[issue22784] test_asyncio fails without the ssl module

2014-11-03 Thread Guido van Rossum
Guido van Rossum added the comment: OK, them LGTM. -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue22784] test_asyncio fails without the ssl module

2014-11-03 Thread Antoine Pitrou
Antoine Pitrou added the comment: The problem is the default value for `purpose` in the function declaration (the signature mocks the ssl.create_default_context() function, so I don't think it's ok to change the default parameter value here). -- ___

[issue22784] test_asyncio fails without the ssl module

2014-11-02 Thread Guido van Rossum
Guido van Rossum added the comment: Is something missing from the patch? I don't understand how *not* defining a function can make anything better. Perhaps you need to conditionally skip the test that uses it? -- ___ Python tracker

[issue22784] test_asyncio fails without the ssl module

2014-11-02 Thread Antoine Pitrou
New submission from Antoine Pitrou: Patch attached. I don't know whether this applies to 3.4 as well. -- components: Tests, asyncio files: ssl_test_asyncio.patch keywords: patch messages: 230502 nosy: gvanrossum, haypo, pitrou, yselivanov priority: normal severity: normal stage: patch re