How to in Python

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • MartinRinehart@gmail.com

    #1

    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?
  • Gabriel Genellina

    #2
    Re: How to in Python

    En Wed, 19 Dec 2007 14:02:00 -0300, <MartinRinehart @gmail.comescri bi�:
    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.wikis paces.com/>

    --
    Gabriel Genellina

    Comment

    • John Machin

      #3
      Re: How to in Python

      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.

      Comment

      • MartinRinehart@gmail.com

        #4
        Re: How to in Python



        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_NUMBE R token on '0x' or '0x '. Try that
        in Python.

        Comment

        • MartinRinehart@gmail.com

          #5
          Re: How to in Python

          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.

          Comment

          • Chris Mellon

            #6
            Re: How to in Python

            On Dec 21, 2007 7:25 AM, <MartinRinehart @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_NUMBE R 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.

            Comment

            • MartinRinehart@gmail.com

              #7
              Re: How to in Python



              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.

              Comment

              • Chris Mellon

                #8
                Re: How to in Python

                On Dec 21, 2007 1:02 PM, <MartinRinehart @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.ge neral
                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.

                Comment

                • MartinRinehart@gmail.com

                  #9
                  Re: How to in Python



                  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.

                  Comment

                  Working...