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


Groups > comp.lang.python > #97901

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

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 <rosuav@gmail.com>
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 <bedf13c2-d34d-4d34-b72d-587afa79825c@googlegroups.com> <3198262E68F6451DBCF040F61F568832@dev.null> <CAPTjJmoTp4TJzfm7JEW-u1RYEgiuDdmzW9Tc40nQcS8P6N=byA@mail.gmail.com> <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 <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.98.1445518146.878.python-list@python.org> (permalink)
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

Show key headers only | View raw


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

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