[issue29893] create_subprocess_exec doc doesn't match software

2020-10-01 Thread STINNER Victor


STINNER Victor  added the comment:

> This was fixed in https://github.com/python/cpython/pull/12598

Right, thanks. I close the issue.

commit 1328375ad1c91f25a1500945a67b0ef36e387527
Author: Dima Tisnek 
Date:   Fri Apr 5 23:02:28 2019 +0900

Fix doc for create_subprocess_exec (GH-12598)



Add missing `program` argument to asyncio.create_subprocess_exec 
documentation.

--
resolution:  -> fixed
stage:  -> resolved
status: open -> closed

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29893] create_subprocess_exec doc doesn't match software

2020-10-01 Thread Carl Bordum Hansen


Carl Bordum Hansen  added the comment:

This was fixed in https://github.com/python/cpython/pull/12598

--
nosy: +carlbordum

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29893] create_subprocess_exec doc doesn't match software

2017-03-27 Thread STINNER Victor

STINNER Victor added the comment:

Ah, I wrote "def create_subprocess_exec(program, *args," to implicitly check 
that args is non empty.

We can either change the function prototype to check that args is non-empty in 
the body, or just update the documentation.

The documentation is not exactly wrong :-)

--
nosy: +haypo

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29893] create_subprocess_exec doc doesn't match software

2017-03-24 Thread Torrin Jones

Changes by Torrin Jones :


--
assignee:  -> docs@python
components: +Documentation
nosy: +docs@python
type:  -> behavior

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com



[issue29893] create_subprocess_exec doc doesn't match software

2017-03-23 Thread Torrin Jones

New submission from Torrin Jones:

The documentation for asyncio.create_subprocess_exec says this is the 
definition . . .

asyncio.create_subprocess_exec(*args, stdin=None, stdout=None, stderr=None, 
loop=None, limit=None, **kwds)

The actual definition is this . . .

def create_subprocess_exec(program, *args, stdin=None, stdout=None,
   stderr=None, loop=None, 
   limit=streams._DEFAULT_LIMIT, **kwds)

Notice the first argument (program) at the start of the actual definition.

--
components: asyncio
messages: 290077
nosy: Torrin Jones, yselivanov
priority: normal
severity: normal
status: open
title: create_subprocess_exec doc doesn't match software
versions: Python 3.6

___
Python tracker 

___
___
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com