Path: csiph.com!au2pb.net!feeder.erje.net!1.eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed7.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.005 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'cc:addr:python-list': 0.09; '22,': 0.09; 'ioerror:': 0.09; 'python': 0.10; 'thu,': 0.15; 'dll,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; "skip:' 60": 0.16; 'subject:access': 0.16; 'wrote:': 0.16; 'exists': 0.18; '2015': 0.20; 'cc:2**0': 0.20; 'cc:addr:python.org': 0.20; 'permission': 0.20; 'header:In-Reply- To:1': 0.24; 'message-id:@mail.gmail.com': 0.27; 'btw,': 0.29; '-----': 0.29; 'subject:/': 0.30; "can't": 0.32; 'file': 0.34; 'received:google.com': 0.35; 'possible': 0.36; 'pm,': 0.36; 'subject:: ': 0.37; 'does': 0.39; 'subject:-': 0.39; 'chrisa': 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=68fj9n3RWEThm3QODRu/c88Rw9OxqIgpGDM6ZfHxvkk=; b=K6OyzieeSpmbkOmc2zcZOSgYM6DzdFOvyDG4z+dWKM1MyUTHLds81NRKxDDPvRNJmN 5FQsizeJcPjHqCM8cENNalIDcFvzWNSLwcuqTzqrcmLC4Y5FLVo766bWEGacVk/B6ODS M8E0OkRSUemHtnpMB5YE0Nz7V4apNJK8zw00f6dZC3oHGpVPq473EA1GK99vZdBloIqU I884TPTpAf9NwYmQL9zM4SPiNI1AD4o4frEj2wOgmZDqMnyQnq6tgETUePN4quviF1kl xY4JAhU4ZJXvw19oE0JM1nwv/0QWWZjr42oQVEeLOJJ2RypNQlHzTBLnoGLwPQ5DI6KR MRSQ== MIME-Version: 1.0 X-Received: by 10.50.4.98 with SMTP id j2mr16167081igj.13.1445515762603; Thu, 22 Oct 2015 05:09:22 -0700 (PDT) In-Reply-To: <3198262E68F6451DBCF040F61F568832@dev.null> References: <3198262E68F6451DBCF040F61F568832@dev.null> Date: Thu, 22 Oct 2015 23:09:22 +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: 13 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1445515766 news.xs4all.nl 23748 [2001:888:2000:d::a6]:50739 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:97899 On Thu, Oct 22, 2015 at 10:22 PM, Gisle Vanem wrote: > IOError: [Errno 13] Permission denied: > 'g:\\Programfiler\\Python27\\Lib\\site-packages\\win32\\win32api.pyd' > > ----- > > BTW, this is on Python 2.7.9 on Win-XP SP3. Does that file exist? A .pyd file is a DLL, so if it already exists and is in use, it's entirely possible it can't be overwritten (eg to upgrade it). ChrisA