[issue7438] Allow to use a part of subprocess module during building Python

2021-10-22 Thread Irit Katriel
Irit Katriel added the comment: Closed after 12 years of inactivity. The code has moved on quite a bit since then. -- nosy: +iritkatriel resolution: -> out of date stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue7438] Allow to use a part of subprocess module during building Python

2017-02-19 Thread Chi Hsuan Yen
Changes by Chi Hsuan Yen : -- nosy: +Chi Hsuan Yen ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue7438] Allow to use a part of subprocess module during building Python

2012-02-20 Thread Éric Araujo
Éric Araujo added the comment: > It is sometimes useful to call subprocess.Popen() in setup.py of Python. What use cases do you have in mind? Maybe you want to remove the half-dozen calls to os.system? -- nosy: +eric.araujo versions: +Python 3.3 -Python 2.7, Python 3.2 _

[issue7438] Allow to use a part of subprocess module during building Python

2009-12-05 Thread Brett Cannon
Changes by Brett Cannon : -- keywords: +needs review priority: -> low stage: -> patch review type: -> behavior ___ Python tracker ___ __

[issue7438] Allow to use a part of subprocess module during building Python

2009-12-04 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : Added file: http://bugs.python.org/file15452/subprocess.py-3.2.patch ___ Python tracker ___ __

[issue7438] Allow to use a part of subprocess module during building Python

2009-12-04 Thread Arfrever Frehtes Taifersar Arahesis
New submission from Arfrever Frehtes Taifersar Arahesis : 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. -- components: