classification
Title: Allow to use a part of subprocess module during building Python
Type: behavior Stage: patch review
Components: Library (Lib) Versions: Python 3.2, Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Arfrever
Priority: low Keywords: needs review, patch

Created on 2009-12-05 04:34 by Arfrever, last changed 2009-12-05 19:52 by brett.cannon.

Files
File name Uploaded Description Edit
subprocess.py-2.7.patch Arfrever, 2009-12-05 04:34 Patch for trunk (2.7)
subprocess.py-3.2.patch Arfrever, 2009-12-05 04:35 Patch for py3k branch (3.2)
Messages (1)
msg95980 - (view) Author: Arfrever Frehtes Taifersar Arahesis (Arfrever) Date: 2009-12-05 04:34
It is sometimes useful to call subprocess.Popen() in setup.py of
Python. Currently it would fail, because subprocess module tries to
import some modules, which not always are used. I suggest to delay some
imports.
History
Date User Action Args
2009-12-05 19:52:25brett.cannonsetpriority: low
keywords: + needs review
type: behavior
stage: patch review
2009-12-05 04:35:48Arfreversetfiles: + subprocess.py-3.2.patch
2009-12-05 04:34:43Arfrevercreate