Path: csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!bcyclone05.am1.xlned.com!bcyclone05.am1.xlned.com!newsfeed.xs4all.nl!newsfeed7.news.xs4all.nl!news.tele.dk!news.tele.dk!small.news.tele.dk!newsgate.cistron.nl!newsgate.news.xs4all.nl!nzpost1.xs4all.net!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.003 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'shutil': 0.07; 'cc:addr :python-list': 0.09; '22,': 0.09; 'errno': 0.09; 'python': 0.10; 'thu,': 0.15; '11:42': 0.16; 'ah,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'loaded.': 0.16; 'run:': 0.16; 'subject:access': 0.16; 'win32api': 0.16; 'wrote:': 0.16; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'seems': 0.23; 'header:In-Reply-To:1': 0.24; 'module': 0.25; 'install': 0.25; 'updating': 0.27; 'message-id:@mail.gmail.com': 0.27; 'subject:/': 0.30; 'another': 0.32; 'getting': 0.33; 'gets': 0.35; 'received:google.com': 0.35; 'loaded': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'does': 0.39; 'subject:-': 0.39; 'due': 0.65; 'chrisa': 0.84; 'pip': 0.84; 'to:none': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:date:message-id:subject:from:cc :content-type; bh=81veVd3fEa0Qs4AX8RhRQxPs0DBsBghA6uvgtdWC/C0=; b=a9Hl/Rr4Fnee2slIh7oTBHs66Tgc2hfbW+5tHgmAEoj/cV1q55q+NNhWPfp/LLBnjc 6Msrc+RDSK5K5BylBqJPQsGD+pCPhb4SN9fXK6AW4u1k2S//Fyc0s8jElienwja4Q73k vsUgkMHVLsE/JWkoWiyzuFzNpMDqVrLuoPXdzCwTldJkH53uT/nAbebw0PlxeaOZO9oK 9LjR1zdsoUkX1TedM51O8kRUmzJ/UbuAKJ0hwFrrtTEmnZr8hX77dtcOPz+j6uJt63rq WW7ksIbpbCbQEk5K0MDp2LQQ6rfBrtl1zRciY1gKCJ90+wrGDs6Numok5lzEBDyA1B35 iPjw== MIME-Version: 1.0 X-Received: by 10.107.36.72 with SMTP id k69mr14674463iok.157.1445518136387; Thu, 22 Oct 2015 05:48:56 -0700 (PDT) In-Reply-To: <021B824D533D44B9A5218FB08C28E1D5@dev.null> References: <3198262E68F6451DBCF040F61F568832@dev.null> <021B824D533D44B9A5218FB08C28E1D5@dev.null> Date: Thu, 22 Oct 2015 23:48:56 +1100 Subject: Re: A high-level cross-platform API for terminal/console access From: Chris Angelico Cc: Python-list Content-Type: text/plain; charset=UTF-8 X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.20+ 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: 12 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1445518146 news.xs4all.nl 23859 [2001:888:2000:d::a6]:59754 X-Complaints-To: abuse@xs4all.nl X-Received-Bytes: 3655 X-Received-Body-CRC: 685846678 Xref: csiph.com comp.lang.python:97901 On Thu, Oct 22, 2015 at 11:42 PM, Gisle Vanem wrote: > I think the Errno 13 (=EACCESS) is due to another module (WConio.pyd) that > seems gets loaded via my site-customize.py is using this > win32api.pyd. Hence it's is in use and shutil fails in updating it. Ah, that might well be it. Does it work if you run: python -S -m pip install --upgrade win32api ? That might stop win32api.pyd from getting loaded. ChrisA