This issue tracker has been migrated to GitHub ,
and is currently read-only.
For more information,
see the GitHub FAQs in the Python's Developer Guide.
Created on 2014年02月01日 03:20 by vstinner, last changed 2022年04月11日 14:57 by admin. This issue is now closed.
| Files | ||||
|---|---|---|---|---|
| File name | Uploaded | Description | Edit | |
| asyncio_pty_osx.patch | vstinner, 2014年02月02日 22:19 | review | ||
| asyncio_pty_osx-2.patch | vstinner, 2014年02月02日 23:25 | review | ||
| Messages (7) | |||
|---|---|---|---|
| msg209870 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2014年02月01日 03:20 | |
http://buildbot.python.org/all/builders/x86%20Tiger%203.x/builds/7801/steps/test/logs/stdio ====================================================================== FAIL: test_write_pty (test.test_asyncio.test_events.PollEventLoopTests) ---------------------------------------------------------------------- Traceback (most recent call last): File "/Users/db3l/buildarea/3.x.bolen-tiger/build/Lib/test/test_asyncio/test_events.py", line 1105, in test_write_pty self.assertEqual(b'1', data) AssertionError: b'1' != b'' |
|||
| msg209873 - (view) | Author: Guido van Rossum (gvanrossum) * (Python committer) | Date: 2014年02月01日 04:12 | |
Well, there were other pty problems on OS X versions before Mavericks (10.9) -- let's just disable this test too using the same approach. |
|||
| msg209880 - (view) | Author: Ned Deily (ned.deily) * (Python committer) | Date: 2014年02月01日 09:38 | |
FYI, besides 10.4 (Tiger), the test also fails on OS X 10.5 but appears to pass on 10.6 and later releases. |
|||
| msg210036 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2014年02月02日 22:19 | |
Here is a patch to skip the tests for SelectSelector on Mac OS X older than 10.6 (Snow Leopard). @Ned: Could you please try it? I don't have access to such old Mac OS X versions. (I now only have a iMac running 10.9). |
|||
| msg210052 - (view) | Author: STINNER Victor (vstinner) * (Python committer) | Date: 2014年02月02日 23:25 | |
Oh, Ned told me that tests using the PollSelector are still failing. I forgot that poll() is also supported on OS X. Please try this new patch. |
|||
| msg210053 - (view) | Author: Ned Deily (ned.deily) * (Python committer) | Date: 2014年02月02日 23:31 | |
With asyncio_pty_osx-2.patch, test_asyncio now passes on OS X 10.4.11 and 10.5.8. |
|||
| msg210054 - (view) | Author: Roundup Robot (python-dev) (Python triager) | Date: 2014年02月02日 23:37 | |
New changeset 21a4ebf5a170 by Victor Stinner in branch 'default': Issue #20472: test_asyncio: skip PTY tests on Mac OS X older than 10.6 http://hg.python.org/cpython/rev/21a4ebf5a170 New changeset 0a71d29b970a by Victor Stinner in branch 'default': Issue #20472: asyncio: Adjust the note about Mac OS X on PTY, specify that it http://hg.python.org/cpython/rev/0a71d29b970a |
|||
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2022年04月11日 14:57:57 | admin | set | github: 64671 |
| 2014年02月02日 23:37:54 | vstinner | set | status: open -> closed resolution: fixed |
| 2014年02月02日 23:37:20 | python-dev | set | nosy:
+ python-dev messages: + msg210054 |
| 2014年02月02日 23:31:21 | ned.deily | set | messages: + msg210053 |
| 2014年02月02日 23:25:16 | vstinner | set | files:
+ asyncio_pty_osx-2.patch messages: + msg210052 |
| 2014年02月02日 22:19:34 | vstinner | set | files:
+ asyncio_pty_osx.patch keywords: + patch messages: + msg210036 |
| 2014年02月01日 09:38:53 | ned.deily | set | nosy:
+ ned.deily messages: + msg209880 |
| 2014年02月01日 04:12:57 | gvanrossum | set | messages: + msg209873 |
| 2014年02月01日 03:20:19 | vstinner | create | |