Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed2a.news.xs4all.nl!xs4all!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.135 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.73; '*S*': 0.00; 'interpreter': 0.05; 'runs': 0.10; 'python': 0.11; 'blocking': 0.16; 'wrote:': 0.18; 'command': 0.22; 'feb': 0.22; 'shell': 0.22; 'error': 0.23; 'mon,': 0.24; 'script': 0.25; 'code:': 0.26; 'header:In-Reply- To:1': 0.27; 'message-id:@mail.gmail.com': 0.30; 'code': 0.31; 'firewall': 0.31; 'probably': 0.32; 'run': 0.32; 'says': 0.33; 'running': 0.33; 'guess': 0.33; 'problem': 0.35; 'received:google.com': 0.35; 'there': 0.35; 'idle': 0.36; 'shows': 0.36; 'seconds': 0.37; 'starting': 0.37; 'to:addr:python-list': 0.38; 'pm,': 0.38; 'to:addr:python.org': 0.39; 'either': 0.39; 'personal': 0.63; 'connecting': 0.64; 'school': 0.64; '8bit%:21': 0.69; 'press': 0.70; 'connection.': 0.74; '2015': 0.84; '4:26': 0.84; 'can\xe2\x80\x99t': 0.84; 'suggests.': 0.84 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type:content-transfer-encoding; bh=b94vhIu+1FC0ectOKp/H/fLIEO3+awFeIsK8TUCFIhI=; b=Xu3XVxKFM7n3yrAo5DeuQyvlPvkVYNpXYXMksq4o/wvD7pI2lJqDPYawwXkqW/lnqj ZDLdc9Jb4nWx+wFL3Sly7Yi5EFahNtl+jzCmsZo2bZRhmNo7ct8hTi503ZddHV0o2yMP egOUU13kycQNdy1G5WOb3ayCnH7EpEpk0AAUcAV1lgE7O9tExMzWBGtpjTenFRogyWV8 fFf8L/jtmtwo207gnMbIB2vMSDiEAequtYVT94TgGSfU8sQmaU+XnjsaY+6Lnk2Bv5cY fUzfwLc00KYx2nDY/U2Wimo1XbwUddwkVYhwvQS8ixNOpoTY7/Nh7PQIJxp2n4NF+nE3 hhrA== X-Received: by 10.70.100.73 with SMTP id ew9mr37952291pdb.95.1422972472432; Tue, 03 Feb 2015 06:07:52 -0800 (PST) MIME-Version: 1.0 In-Reply-To: References: From: Ian Kelly Date: Tue, 3 Feb 2015 07:07:12 -0700 Subject: Re: __pycache__ To: Python Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable 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: 18 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1422972481 news.xs4all.nl 2940 [2001:888:2000:d::a6]:37806 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:85148 On Mon, Feb 2, 2015 at 4:26 PM, Luke Lloyd wrote: > I am in school and there is a problem with my code: > > > > When I try to run my code in the python code in the python shell it waits > about 10 seconds then shows an error that says =E2=80=9CIDLE=E2=80=99s su= bprocess didn=E2=80=99t > make connection. Either IDLE can=E2=80=99t start a subprocess or personal= firewall > software is blocking the connection.=E2=80=9D Then when I press OK it jus= t closes. IDLE runs code by starting a Python interpreter in a subprocess and connecting to it. If this is a school computer then I would guess it probably has a very aggressive firewall as the message suggests. What happens if you try running the script directly from the OS command line instead of through IDLE?