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


Groups > comp.lang.python > #26258

Re: simplified Python parsing question

Date 2012-07-30 16:59 +0200
From Laszlo Nagy <gandalf@shopzeus.com>
Subject Re: simplified Python parsing question
References <5015C58D.4040101@harvee.org> <50165308.5060708@shopzeus.com> <50165A94.5050906@harvee.org>
Newsgroups comp.lang.python
Message-ID <mailman.2733.1343660358.4697.python-list@python.org> (permalink)

Show all headers | View raw


>
> yeah the problem is also little more complicated than simple parsing 
> of Python code. For example, one example (from the white paper)
>
> *meat space blowback = Friends and family [well-meaning attempt]
>
> *could that be parsed by the tools you mention?

It is not valid Python code. Pygments is able to tokenize code that is 
not valid Python code. Because it is not parsing, it is just tokenizing. 
But if you put a bunch of random tokens into a file, then of course you 
will never be able to split that into statements.

Probably, you will need to process ident/dedent tokens, identify the 
"level" of the satement. And then you can tell what file, class, inner 
class, method you are staying in. Inside one "level" or code block, you 
could try to divide the code into statements.

Otherwise, I have no idea how a blind person could navigate in a Python 
source. In fact I have no idea how they use regular programs. So I'm 
affraid I cannot help too much with this. :-(

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


Thread

Re: simplified Python parsing question Laszlo Nagy <gandalf@shopzeus.com> - 2012-07-30 16:59 +0200

csiph-web