Path: csiph.com!usenet.pasdenom.info!news.albasani.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed5.news.xs4all.nl!xs4all!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.001 X-Spam-Evidence: '*H*': 1.00; '*S*': 0.00; 'objects,': 0.07; '__init__': 0.09; 'c2pwrite': 0.09; 'errread,': 0.09; 'file-like': 0.09; 'instance.': 0.09; 'objects.': 0.09; 'stderr': 0.09; 'stdout': 0.09; 'subject:files': 0.09; 'errwrite)': 0.16; 'fileno': 0.16; 'wrote:': 0.17; '>>>': 0.18; 'skip:" 30': 0.20; '"",': 0.22; 'work.': 0.23; 'header:In-Reply-To:1': 0.25; '(most': 0.27; 'message-id:@mail.gmail.com': 0.27; "doesn't": 0.28; 'actual': 0.28; 'subject:size': 0.29; 'file': 0.32; 'could': 0.32; 'traceback': 0.33; 'to:addr:python-list': 0.33; 'received:google.com': 0.34; 'or,': 0.34; 'nov': 0.35; 'pm,': 0.35; 'received:209.85': 0.35; 'received:209': 0.37; 'subject:: ': 0.38; 'to:addr:python.org': 0.39; 'subject:-': 0.40; 'header:Received:5': 0.40; 'think': 0.40; 'to:name:python': 0.84; 'subject:limited': 0.93 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; bh=sau6J+4hTuR+iHdf6EolryATKnLwLs6LxSAwohhk9+8=; b=0IctSmqBqmV1ZHv6gzZKyvu42Z396tqWZ27TrglLcC7pfPN44SShm0gWfN53GE3/EC U65fo8xOSWU5x4Yx7vUgIrkDL9/mg15nhKqdotbnhnY24BuIDa7TvttJuFGdUxAfeY3g jAzvb16M86FYaNVi+ZVzu6lN4ooBZm9JSS3AYoDOEH296oZoCQzFnZyuTJyEKtgrmAan AMXVXhHRg3urbHtv/sIQVkvFoX8WZnBHt8GSpZPDH4hujWcj7wkFKUmlFRzpqQIJ7kx0 VEwkh1yvHAR8KuiQYYyvJLgsi+JC8oBuFnqsanVNxdVBFGkmbvzZl0HEkPyRGfaVzg9r N2kQ== MIME-Version: 1.0 In-Reply-To: <87lie4lnxr.fsf@nitrogen.i-did-not-set--mail-host-address--so-tickle-me> References: <509ab0fa$0$6636$9b4e6d93@newsspool2.arcor-online.net> <509AD812.2060605@gmail.com> <87lie4lnxr.fsf@nitrogen.i-did-not-set--mail-host-address--so-tickle-me> From: Ian Kelly Date: Wed, 14 Nov 2012 00:22:48 -0700 Subject: Re: creating size-limited tar files To: Python Content-Type: text/plain; charset=ISO-8859-1 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 19 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1352877800 news.xs4all.nl 6941 [2001:888:2000:d::a6]:57514 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:33310 On Tue, Nov 13, 2012 at 11:05 PM, Kushal Kumaran wrote: > Or, you could just change the p1's stderr to an io.BytesIO instance. > Then call p2.communicate *first*. This doesn't seem to work. >>> b = io.BytesIO() >>> p = subprocess.Popen(["ls", "-l"], stdout=b) Traceback (most recent call last): File "", line 1, in File "/usr/lib64/python3.2/subprocess.py", line 711, in __init__ errread, errwrite) = self._get_handles(stdin, stdout, stderr) File "/usr/lib64/python3.2/subprocess.py", line 1112, in _get_handles c2pwrite = stdout.fileno() io.UnsupportedOperation: fileno I think stdout and stderr need to be actual file objects, not just file-like objects.