Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.058 X-Spam-Evidence: '*H*': 0.89; '*S*': 0.00; 'subject:skip:s 10': 0.07; 'f.close()': 0.09; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'problem!': 0.16; 'wrote:': 0.18; 'post': 0.26; 'header:In-Reply-To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'fri,': 0.33; 'subject: (': 0.35; 'received:209.85': 0.35; 'received:google.com': 0.35; 'should': 0.36; 'received:209': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'previous': 0.38; '12,': 0.39; 'to:addr:python.org': 0.39; 'details.': 0.61; '2013': 0.98 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:content-type; bh=L+T/h2vYv/QioaYQw5AO3c06fy8edBL1QZepd1IhNUY=; b=Q8XT8OgEzVFcsUjLsxUNy05IL2MgxV2KQuGu1+3YWiW8pW5VkPaGT+nRSdkxd41URn 3LsPN4qwSfYP3g7xpDBR3pCPGN9rPzLowl0ZKxhhdCNuz8AoT7NK12D4aP+HXUr6XCDt ZDLACN7tsCbMGCSBX4zaRvqckXmZjGPOa0Dm3HwJgZ3c6nLw+Pjfv27MfHlYdlRjw49r ycDS9nM/GMeP4IADpEzFJlPOb7Qvo1PgmvX0qTnYJpuUa2qKbIUPNGLpjjPGoIEl/hZW 3IfdvDqqyNCGVjrna7E32bOarVO5NRVq4KBLQRxQvGVVJ1XnbcqpCxzuW1tFtytn/+mg 3OZw== MIME-Version: 1.0 X-Received: by 10.52.67.164 with SMTP id o4mr6561305vdt.42.1365758541724; Fri, 12 Apr 2013 02:22:21 -0700 (PDT) In-Reply-To: <439121e2-ecc0-4f4d-b75f-0154102cc128@googlegroups.com> References: <439121e2-ecc0-4f4d-b75f-0154102cc128@googlegroups.com> Date: Fri, 12 Apr 2013 19:22:21 +1000 Subject: Re: shutil.copyfile is incomplete (truncated) From: Chris Angelico To: python-list@python.org 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: 10 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1365758544 news.xs4all.nl 2632 [2001:888:2000:d::a6]:45902 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:43436 On Fri, Apr 12, 2013 at 7:18 PM, Rob Schneider wrote: > f.close Yep, there's the problem! See my previous post for details. Change this to: f.close() and you should be sorted. ChrisA