mirror of
https://github.com/python/cpython.git
synced 2025-10-17 20:28:43 +00:00
gh-71052: Change Android's sys.platform
from "linux" to "android"
Co-authored-by: Erlend E. Aasland <erlend.aasland@protonmail.com>
This commit is contained in:
parent
9f983e00ec
commit
872c0714fc
24 changed files with 97 additions and 81 deletions
|
@ -480,7 +480,8 @@ class SubprocessMixin:
|
|||
self.assertEqual(output, None)
|
||||
self.assertEqual(exitcode, 0)
|
||||
|
||||
@unittest.skipIf(sys.platform != 'linux', "Don't have /dev/stdin")
|
||||
@unittest.skipIf(sys.platform not in ('linux', 'android'),
|
||||
"Don't have /dev/stdin")
|
||||
def test_devstdin_input(self):
|
||||
|
||||
async def devstdin_input(message):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue