473,386 Members | 1,810 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

How to in Python

I've got a pointer to a position in a line of code that contains
either a digit or a period (decimal point). I've got this comment:

Numbers are one of these:
integers:
digit+
0xhex_digit+
decimals:
digit+.digit*[E['+'|'-']digit+]
.digit+[E['+'|'-']digit+]
digit+[.digit*]%
.digit+%

Common metacode: '*' = 0 or more, '+' = 1 or more, [] = optional, | =
or, ...

Now I need to instantiate the comment. How would an experienced Python
coder proceed?
Dec 19 '07 #1
8 1164
En Wed, 19 Dec 2007 14:02:00 -0300, <Ma************@gmail.comescribi�:
I've got a pointer to a position in a line of code that contains
either a digit or a period (decimal point). I've got this comment:

Numbers are one of these:
integers:
digit+
0xhex_digit+
decimals:
digit+.digit*[E['+'|'-']digit+]
.digit+[E['+'|'-']digit+]
digit+[.digit*]%
.digit+%

Common metacode: '*' = 0 or more, '+' = 1 or more, [] = optional, | =
or, ...

Now I need to instantiate the comment. How would an experienced Python
coder proceed?
Do you have to validate input based on that grammar? That is, do you want
a function like this?

def is_valid_number(input):
if ....
return True
return False

Or, do you want to consume characters starting from your pointer, stopping
when an invalid character appears?

This looks like one of those few cases where "Use a regular expression"
may be a good answer. If you like a more Pythonic approach, try using
Pyparsing <http://pyparsing.wikispaces.com/>

--
Gabriel Genellina

Dec 19 '07 #2
On Dec 20, 4:02 am, MartinRineh...@gmail.com wrote:
I've got a pointer to a position in a line of code that contains
either a digit or a period (decimal point). I've got this comment:

Numbers are one of these:
integers:
digit+
0xhex_digit+
decimals:
digit+.digit*[E['+'|'-']digit+]
.digit+[E['+'|'-']digit+]
digit+[.digit*]%
.digit+%

Common metacode: '*' = 0 or more, '+' = 1 or more, [] = optional, | =
or, ...

Now I need to instantiate the comment. How would an experienced Python
coder proceed?
Use a proper lexer written by somebody who knows what they are doing,
as has already been recommended to you.
Dec 19 '07 #3


John Machin wrote:
Use a proper lexer written by somebody who knows what they are doing,
as has already been recommended to you.
My lexer returns a MALFORMED_NUMBER token on '0x' or '0x '. Try that
in Python.

Dec 21 '07 #4
If I get to add multi-line strings today, I'll have a complete
tokenizer. Interior looks a lot like C minus semi-colons. (Though I
did figure out that there wasn't any need for tokens that didn't come
from a real to have a doubleValue field. In C++ or Java all the Tokens
had a doubleValue, because one needed it.)

Theory: there are some problems which, by their nature, end up looking
a lot like C, regardless of language.

I wrote a Perl-to-HTML pretty-printer. It lets you embed HTML in
comments and creates a table of contents hyperlinked to the individual
functions. It's at http://www.MartinRinehart.com , output and source
code, in the Articles section.

I started with a Perl-style solution: regex for the chars left of "#"
and for the chars to the right. One line of Perl. Nice, except that it
won't work when applied to itself. It will split the line based on the
"#" in the regex, of course. Kludged around that, but then met "#"
embedded in strings, "#" embedded in regex passed to functions, ...

Ended up marching down the input line, one character at a time, like a
C program.
Dec 21 '07 #5
On Dec 21, 2007 7:25 AM, <Ma************@gmail.comwrote:
>

John Machin wrote:
Use a proper lexer written by somebody who knows what they are doing,
as has already been recommended to you.

My lexer returns a MALFORMED_NUMBER token on '0x' or '0x '. Try that
in Python.
Is there some reason that you think Python is incapable of
implementing lexers that do this, just because Python lexer accepts
it? Note that if you're using your lexer to mark up or pretty print or
whatever Python source, it's wrong - 0x is (rightly or not) a valid
Python literal.
Dec 21 '07 #6


Chris Mellon wrote:
Is there some reason that you think Python is incapable of
implementing lexers that do this, just because Python lexer accepts
it?
Absolutely not. My opinion is that it's a bug. A very, very minor bug,
but still six-legged.
Note that if you're using your lexer to mark up or pretty print or
whatever Python source, it's wrong - 0x is (rightly or not) a valid
Python literal.
My lexer is for my language, Decaf, which, in this particular, is the
same as Python. Here's what I find at at python.org/ref: (2.4.4).

hexinteger ::= "0" ("x" | "X") hexdigit+

Implementation differs from specification. In this case, I think the
spec is more sensible.
Dec 21 '07 #7
On Dec 21, 2007 1:02 PM, <Ma************@gmail.comwrote:
>

Chris Mellon wrote:
Is there some reason that you think Python is incapable of
implementing lexers that do this, just because Python lexer accepts
it?

Absolutely not. My opinion is that it's a bug. A very, very minor bug,
but still six-legged.
I understand the argument but I'm wondering why you're asking
questions on this list about it. You don't seem to be implementing the
lexer in Python (because otherwise the question wouldn't have come
up), and you don't seem to be parsing Python code. Where's the python
angle? Not that this list is totally intolerant of offtopic
discussions, but you don't seem to even have a hint of Python interest
here - the questions seem to be better suited for comp.parsers.general
or something.
Note that if you're using your lexer to mark up or pretty print or
whatever Python source, it's wrong - 0x is (rightly or not) a valid
Python literal.

My lexer is for my language, Decaf, which, in this particular, is the
same as Python. Here's what I find at at python.org/ref: (2.4.4).

hexinteger ::= "0" ("x" | "X") hexdigit+

Implementation differs from specification. In this case, I think the
spec is more sensible.
I tend to consider "what the parser actually accepts" rather than
"what the grammar specifies" to be normative when writing pretty
printers or syntax highlighters.
Dec 21 '07 #8


Chris Mellon wrote:
You don't seem to be implementing the
lexer in Python
I am absolutely implementing my language in Python, a language I have
now been writing for two entire weeks. This list has been more than
helpful, tolerating numerous newbie questions.
Dec 22 '07 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.