[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-09-14 Thread Ezio Melotti
Ezio Melotti added the comment: Pong, thanks for the patch! -- assignee: docs@python -> ezio.melotti nosy: +ezio.melotti resolution: -> fixed stage: -> committed/rejected status: open -> closed type: -> enhancement ___ Python tracker

[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-09-14 Thread Roundup Robot
Roundup Robot added the comment: New changeset 820032281f49 by Ezio Melotti in branch '2.7': #15789: mention shell-like parts of the stdlib in the subprocess docs. Patch by Chris Rebert. http://hg.python.org/cpython/rev/820032281f49 New changeset 9794f69c1d09 by Ezio Melotti in branch '3.2': #

[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-09-14 Thread Chris Rebert
Chris Rebert added the comment: Ping. Any further comments? -- ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-08-28 Thread Chris Rebert
Chris Rebert added the comment: Revised patch in response to comments. -- Added file: http://bugs.python.org/file27029/subprocess.rst.patch ___ Python tracker ___ ___

[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-08-27 Thread Chris Jerdonek
Chris Jerdonek added the comment: This is a nit, but can you adhere to an 80-character line length? Much (but not all) of the documentation does. -- nosy: +cjerdonek ___ Python tracker ___

[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-08-27 Thread Éric Araujo
Éric Araujo added the comment: Thanks, LGTM. Maybe there’s a section about walking files in the os module doc that you could also link to? Also shutil. -- nosy: +eric.araujo versions: +Python 3.2 -Python 3.4 ___ Python tracker

[issue15789] mention shell-like parts of the std lib in the subprocess docs

2012-08-27 Thread Chris Rebert
New submission from Chris Rebert: To further dissuade people from using subprocess.Popen's shell=True option unnecessarily, this patch points out that some common shell features are also available directly in Python via certain modules & functions. -- assignee: docs@python components: