Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > comp.lang.python > #31325
| Path | csiph.com!usenet.pasdenom.info!aioe.org!news.stack.nl!newsfeed.xs4all.nl!newsfeed6.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail |
|---|---|
| Return-Path | <wanderer@dialup4less.com> |
| X-Original-To | python-list@python.org |
| Delivered-To | python-list@mail.python.org |
| X-Spam-Status | OK 0.000 |
| X-Spam-Evidence | '*H*': 1.00; '*S*': 0.00; 'exception': 0.03; 'args': 0.04; 'guido': 0.05; 'mrab': 0.05; 'none:': 0.05; 'sys': 0.05; '"__main__":': 0.07; '__name__': 0.07; 'msg': 0.07; 'try:': 0.07; 'attribute.': 0.09; 'err:': 0.09; 'msg:': 0.09; 'to:addr:comp.lang.python': 0.09; 'cc:addr:python-list': 0.10; 'def': 0.10; '--help"': 0.16; 'msg):': 0.16; 'url:thread': 0.16; 'url:weblogs': 0.16; 'usage,': 0.16; 'weird.': 0.16; 'wrote:': 0.17; 'code,': 0.18; 'import': 0.21; 'cc:2**0': 0.23; '15,': 0.23; 'monday,': 0.23; 'raise': 0.24; 'cc:no real name:2**0': 0.24; 'idea': 0.24; 'cc:addr:python.org': 0.25; 'header:In-Reply-To:1': 0.25; 'header:User-Agent:1': 0.26; 'skip:> 10': 0.27; "doesn't": 0.28; 'post': 0.28; 'unchanged': 0.29; 'definition': 0.29; 'skip:_ 10': 0.29; 'van': 0.29; 'class': 0.29; 'function': 0.30; 'print': 0.32; 'received:google.com': 0.34; 'received:209.85': 0.35; 'except': 0.36; 'but': 0.36; 'october': 0.37; 'received:209': 0.37; 'subject:: ': 0.38; 'gives': 0.39; 'where': 0.40; 'help': 0.40; 'skip:u 10': 0.60; "you've": 0.61; 'more': 0.63; 'url:jsp': 0.71 |
| Newsgroups | comp.lang.python |
| Date | Mon, 15 Oct 2012 10:18:51 -0700 (PDT) |
| In-Reply-To | <mailman.2218.1350318893.27098.python-list@python.org> |
| Complaints-To | groups-abuse@google.com |
| Injection-Info | glegroupsg2000goo.googlegroups.com; posting-host=65.205.52.2; posting-account=_dIAQQoAAAB7Yieol6fmkK_HviJUbJt3 |
| References | <8b5cb95f-424b-45a8-b19b-42f92f531a75@googlegroups.com> <mailman.2217.1350317845.27098.python-list@python.org> <k5hd7c$emf$1@reader1.panix.com> <mailman.2218.1350318893.27098.python-list@python.org> |
| User-Agent | G2/1.0 |
| X-Google-Web-Client | true |
| X-Google-IP | 65.205.52.2 |
| MIME-Version | 1.0 |
| Subject | Re: Exception Messages |
| From | Wanderer <wanderer@dialup4less.com> |
| To | comp.lang.python@googlegroups.com |
| Content-Type | text/plain; charset=ISO-8859-1 |
| 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 <python-list.python.org> |
| List-Unsubscribe | <http://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 | <http://mail.python.org/mailman/listinfo/python-list>, <mailto:python-list-request@python.org?subject=subscribe> |
| Message-ID | <mailman.2223.1350321541.27098.python-list@python.org> (permalink) |
| Lines | 40 |
| NNTP-Posting-Host | 2001:888:2000:d::a6 |
| X-Trace | 1350321541 news.xs4all.nl 6855 [2001:888:2000:d::a6]:57752 |
| X-Complaints-To | abuse@xs4all.nl |
| Xref | csiph.com comp.lang.python:31325 |
Show key headers only | View raw
On Monday, October 15, 2012 12:34:53 PM UTC-4, MRAB wrote:
>
> Yes, but you've put the message in msg, and Exception doesn't have that
>
> attribute.
>
That's weird. I got this Exception class definition idea from this post by Guido van Rostrum, Where he gives this main function to look like
import sys
import getopt
class Usage(Exception):
def __init__(self, msg):
self.msg = msg
def main(argv=None):
if argv is None:
argv = sys.argv
try:
try:
opts, args = getopt.getopt(argv[1:], "h", ["help"])
except getopt.error, msg:
raise Usage(msg)
# more code, unchanged
except Usage, err:
print >>sys.stderr, err.msg
print >>sys.stderr, "for help use --help"
return 2
if __name__ == "__main__":
sys.exit(main())
http://www.artima.com/weblogs/viewpost.jsp?thread=4829
Back to comp.lang.python | Previous | Next — Previous in thread | Next in thread | Find similar | Unroll thread
Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 09:00 -0700
Re: Exception Messages MRAB <python@mrabarnett.plus.com> - 2012-10-15 17:17 +0100
Re: Exception Messages John Gordon <gordon@panix.com> - 2012-10-15 16:22 +0000
Re: Exception Messages MRAB <python@mrabarnett.plus.com> - 2012-10-15 17:34 +0100
Re: Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 10:18 -0700
Re: Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 10:20 -0700
Re: Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 10:20 -0700
Re: Exception Messages MRAB <python@mrabarnett.plus.com> - 2012-10-15 18:34 +0100
Re: Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 10:44 -0700
Re: Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 10:44 -0700
Re: Exception Messages Wanderer <wanderer@dialup4less.com> - 2012-10-15 10:18 -0700
Re: Exception Messages Dave Angel <d@davea.name> - 2012-10-15 12:42 -0400
Re: Exception Messages Terry Reedy <tjreedy@udel.edu> - 2012-10-15 15:15 -0400
Re: Exception Messages Steven D'Aprano <steve+comp.lang.python@pearwood.info> - 2012-10-16 00:47 +0000
csiph-web