Path: csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.freenet.ag!news2.euro.net!newsgate.cistron.nl!newsgate.news.xs4all.nl!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.006 X-Spam-Evidence: '*H*': 0.99; '*S*': 0.00; 'exception': 0.03; 'subject:file': 0.07; 'pep': 0.09; 'url:peps': 0.09; 'cc:addr :python-list': 0.10; '<>.': 0.11; 'also:': 0.16; 'comma': 0.16; 'var.': 0.16; 'wrote:': 0.17; 'thu,': 0.17; 'url:dev': 0.17; 'email addr:gmail.com>': 0.20; 'cc:2**0': 0.23; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'am,': 0.27; 'message-id:@mail.gmail.com': 0.27; 'subject:end': 0.29; 'subject:some': 0.29; 'url:mailman': 0.29; 'url:python': 0.32; 'url:listinfo': 0.32; 'subject: .': 0.33; 'subject:data': 0.33; 'received:google.com': 0.34; 'except': 0.36; 'url:org': 0.36; 'subject:: ': 0.38; 'url:docs': 0.38; 'subject:-': 0.40; 'url:mail': 0.40; 'url:0': 0.67; '2013': 0.84; 'url:reference': 0.84; 'joel': 0.91 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:x-received:in-reply-to:references:date:message-id :subject:from:to:cc:content-type; bh=ZGqyj3FyZWLv88oI/T0zXf53qyU9+apEBubMnlhbD/g=; b=L8XJuAN7vC+Wi9k8fxuOpS0PjZSmDe6rDb535nnnyUN6SAkmu0ndxDvyB/Zn92nv8h QH25XD9kOeLQBy6F6wc8p+cpHVz8kBzLaBtXwWbipGbPtOgKSkO8eYMHZuhc/4jTYct7 Ua/xtckW62ijvnbVNSAiY1DqdIRkc3HoltMplR3jm8An3vaX1GSVc4pb6QURsT0J/w6h QqsDmElVr/W/koUL18ilFCzjohfjlErOORMS6CyfqsWDPSKR5iAkFaCeGIgPrpkK3y5b mWTYP+BUSMUCbS+ixA2/2bKgKXSpAymhaobvKaiE3Tq7dkXYSDlwZpsCjveWdhvPv2pk 6XCQ== MIME-Version: 1.0 X-Received: by 10.52.19.200 with SMTP id h8mr11009272vde.60.1362652092936; Thu, 07 Mar 2013 02:28:12 -0800 (PST) In-Reply-To: <69615062-409b-4315-bf5a-77e57ad549f2@googlegroups.com> References: <7e0a8562-9a48-4f5a-804d-3751733288f0@googlegroups.com> <009ab803-6269-453b-bff1-0c58a6db358d@googlegroups.com> <0d58f312-9259-407d-b47b-80b88cf9a82c@googlegroups.com> <5bfc6644-388f-4469-a591-63fb8070faa2@googlegroups.com> <78e92c1d-521b-440c-9517-84406cdc6d6a@googlegroups.com> <8dbd532b-2007-46e5-9e05-e3b2597d78d9@googlegroups.com> <69615062-409b-4315-bf5a-77e57ad549f2@googlegroups.com> Date: Thu, 7 Mar 2013 05:28:12 -0500 Subject: Re: Inserting-embedding some html data at the end of a .py file From: Joel Goldstick To: =?UTF-8?B?zp3Or866zr/PgiDOk866z4EzM866?= Content-Type: multipart/alternative; boundary=20cf307ca04cf3eaf504d753299e Cc: "python-list@python.org" 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: 73 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1362652101 news.xs4all.nl 6849 [2001:888:2000:d::a6]:48513 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:40743 --20cf307ca04cf3eaf504d753299e Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable On Thu, Mar 7, 2013 at 5:09 AM, =CE=9D=CE=AF=CE=BA=CE=BF=CF=82 =CE=93=CE=BA= =CF=8133=CE=BA wrote: > This fails also: > > except MySQLdb.ProgrammingError, e: > > How on earth the exception is suppsoed to be written!!!! > Change from except *exc*, *var* to except *exc* as *var*. See *PEP 3110* . So change the comma to the word 'as' > -- > http://mail.python.org/mailman/listinfo/python-list > --=20 Joel Goldstick http://joelgoldstick.com --20cf307ca04cf3eaf504d753299e Content-Type: text/html; charset=UTF-8 Content-Transfer-Encoding: quoted-printable



On Thu, Mar 7, 2013 at 5:09 AM, =CE=9D=CE=AF=CE=BA=CE=BF=CF=82 =CE= =93=CE=BA=CF=8133=CE=BA <nikos.gr33k@gmail.com> wrote:
This fails also:

except MySQLdb.ProgrammingError, e:

How on earth the exception is suppsoed to be written!!!!

Change from ex= cept exc, var to except exc as<= /tt> var. See PEP 3110<= /strong>.


So change the comma to the word 'as'
<= blockquote class=3D"gmail_quote" style=3D"margin:0px 0px 0px 0.8ex;border-l= eft:1px solid rgb(204,204,204);padding-left:1ex"> --
http://mail.python.org/mailman/listinfo/python-list



--
--20cf307ca04cf3eaf504d753299e--