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


Groups > comp.lang.python > #63027

Re: How to read and post tracebacks (was Registry Key Value Help)

Path csiph.com!usenet.pasdenom.info!weretis.net!feeder1.news.weretis.net!news.albasani.net!rt.uk.eu.org!newsfeed.xs4all.nl!newsfeed2.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!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.006
X-Spam-Evidence '*H*': 0.99; '*S*': 0.00; 'wiki': 0.03; '(all': 0.07; 'subject:How': 0.10; 'cc:addr:python-list': 0.11; 'subject:Help': 0.11; 'python': 0.11; 'jan': 0.12; 'complicated,': 0.16; 'debugging,': 0.16; 'from:addr:rosuav': 0.16; 'from:name:chris angelico': 0.16; 'naming': 0.16; 'subject:post': 0.16; 'uppercase': 0.16; 'wiki?': 0.16; 'wrote:': 0.18; 'bit': 0.19; 'normally': 0.19; 'code,': 0.22; 'cc:addr:python.org': 0.22; 'fairly': 0.24; 'cc:2**0': 0.24; 'possibly': 0.26; 'post': 0.26; 'header:In-Reply-To:1': 0.27; 'quickly': 0.29; 'message- id:@mail.gmail.com': 0.30; "i'm": 0.30; 'lines': 0.31; 'posting': 0.31; 'too.': 0.31; 'usually': 0.31; 'post.': 0.31; 'figure': 0.32; 'fri,': 0.33; 'problem': 0.35; 'subject: (': 0.35; 'but': 0.35; 'received:google.com': 0.35; 'possible': 0.36; 'level': 0.37; 'being': 0.38; 'pm,': 0.38; 'sure': 0.39; 'even': 0.60; 'read': 0.60; 'simple': 0.61; 'more': 0.64; 'skill': 0.68; 'subject:Value': 0.84; 'subject:read': 0.84; '"how': 0.91; 'to:none': 0.92
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=1RHnZbsUiclXhyfG1BD2B4HZ742ftNoxBYzv8RoMawI=; b=k25E19OFZmH3Ipl1PpBll2N7/ZpbLrPiNiLLV/30bkZbwv3iNiBnWJ3qHr5nmpZoZQ MN9KYIX6QwHcIugeYJx+775dbBDXzDhD6YsCNvgJFUsjyI77UMQeDhMgOIybTEb1QqsP owVohauWdryaP5PqprVNelHUToWCZglxPHyKjWaXPktZngtu5roYOrCas2M6KeF8XIeL E+mMa7/DSgs7n+XLl/gj7sLMU0iwTr59IjwD1Zuh/Z/Ajx9DBS0z1gd9V8+cwRhJLLP9 TgbWBUb1pE6n0Z+0I/yelnOT707YdCIdADpg/LHIyQ8XqBQRDPOdcg7iydpuNsKggOMi ol0g==
MIME-Version 1.0
X-Received by 10.68.196.193 with SMTP id io1mr92680822pbc.46.1388721832446; Thu, 02 Jan 2014 20:03:52 -0800 (PST)
In-Reply-To <CAJ+TeocRV3+8v-5zMGO9vmDKr5jSFt2jkrD4q5c2QuT_oxyeHg@mail.gmail.com>
References <CAJ+TeocRV3+8v-5zMGO9vmDKr5jSFt2jkrD4q5c2QuT_oxyeHg@mail.gmail.com>
Date Fri, 3 Jan 2014 15:03:52 +1100
Subject Re: How to read and post tracebacks (was Registry Key Value Help)
From Chris Angelico <rosuav@gmail.com>
Cc "python-list@python.org" <python-list@python.org>
Content-Type text/plain; charset=UTF-8
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 <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.4826.1388721841.18130.python-list@python.org> (permalink)
Lines 16
NNTP-Posting-Host 2001:888:2000:d::a6
X-Trace 1388721841 news.xs4all.nl 2961 [2001:888:2000:d::a6]:56410
X-Complaints-To abuse@xs4all.nl
Xref csiph.com comp.lang.python:63027

Show key headers only | View raw


On Fri, Jan 3, 2014 at 2:58 PM, Rustom Mody <rustompmody@gmail.com> wrote:
> Why not write up a few lines on "How to read and post python tracebacks"
> and post it on the wiki?

You mean "copy and paste the whole output"? I'm not sure what more
needs to be said about posting them.

Reading them is a bit more complicated, but possibly _too_ complicated
for a simple wiki post. Being able to quickly eyeball a traceback and
know which level to look for the problem at is part of the skill of
debugging, and it usually requires that you know the codebase fairly
well too. Though even with unfamiliar code, it's possible to figure a
lot out by naming conventions, which is why they're so important (all
uppercase meaning "constant" and normally a scalar - so useful).

ChrisA

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


Thread

Re: How to read and post tracebacks (was Registry Key Value Help) Chris Angelico <rosuav@gmail.com> - 2014-01-03 15:03 +1100
  Re: How to read and post tracebacks (was Registry Key Value Help) Roy Smith <roy@panix.com> - 2014-01-02 23:30 -0500

csiph-web