Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > comp.lang.python > #97899

Re: A high-level cross-platform API for terminal/console access

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 <rosuav@gmail.com>
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 <bedf13c2-d34d-4d34-b72d-587afa79825c@googlegroups.com> <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 <rosuav@gmail.com>
Cc Python-list <python-list@python.org>
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 <python-list.python.org>
List-Unsubscribe <https://mail.python.org/mailman/options/python-list>, <mailto:python-list-request@python.org?subject=unsubscribe>
List-Archive <http://mail.python.org/pipermail/python-list/>
List-Post <mailto:python-list@python.org>
List-Help <mailto:python-list-request@python.org?subject=help>
List-Subscribe <https://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe>
Newsgroups comp.lang.python
Message-ID <mailman.96.1445515766.878.python-list@python.org> (permalink)
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

Show key headers only | View raw


On Thu, Oct 22, 2015 at 10:22 PM, Gisle Vanem <gvanem@yahoo.no> 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

Back to comp.lang.python | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

A high-level cross-platform API for terminal/console access Peter Brittain <peter.brittain.os@gmail.com> - 2015-10-21 11:30 -0700
  Re: A high-level cross-platform API for terminal/console access Laura Creighton <lac@openend.se> - 2015-10-21 21:41 +0200
    Re: A high-level cross-platform API for terminal/console access Peter Brittain <peter.brittain.os@gmail.com> - 2015-10-21 15:18 -0700
      Re: A high-level cross-platform API for terminal/console access eryksun <eryksun@gmail.com> - 2015-10-21 17:26 -0500
        Re: A high-level cross-platform API for terminal/console access Peter Brittain <peter.brittain.os@gmail.com> - 2015-10-22 02:02 -0700
          Re: A high-level cross-platform API for terminal/console access Laura Creighton <lac@openend.se> - 2015-10-22 11:23 +0200
            Re: A high-level cross-platform API for terminal/console access Peter Brittain <peter.brittain.os@gmail.com> - 2015-10-22 03:56 -0700
              Re: A high-level cross-platform API for terminal/console access Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2015-10-22 12:10 +0100
  Re: A high-level cross-platform API for terminal/console access "Gisle Vanem" <gvanem@yahoo.no> - 2015-10-22 13:22 +0200
    Re: A high-level cross-platform API for terminal/console access Peter Brittain <peter.brittain.os@gmail.com> - 2015-10-22 05:04 -0700
  Re: A high-level cross-platform API for terminal/console access Chris Angelico <rosuav@gmail.com> - 2015-10-22 23:09 +1100
  Re: A high-level cross-platform API for terminal/console access "Gisle Vanem" <gvanem@yahoo.no> - 2015-10-22 14:42 +0200
    Re: A high-level cross-platform API for terminal/console access Peter Brittain <peter.brittain.os@gmail.com> - 2015-10-24 02:40 -0700
  Re: A high-level cross-platform API for terminal/console access Chris Angelico <rosuav@gmail.com> - 2015-10-22 23:48 +1100
  Re: A high-level cross-platform API for terminal/console access Oscar Benjamin <oscar.j.benjamin@gmail.com> - 2015-10-22 13:56 +0100

csiph-web