Python traverse

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Namenick

    #1

    Python traverse

    Hello, I am completely new to Python, would u please tell me something
    about Python compiler traversing techniques ? or please direct me to
    some document if available on the net for reference ?

    Thanks

  • Fredrik Lundh

    #2
    Re: Python traverse

    Namenick wrote:
    Hello, I am completely new to Python, would u please tell me something
    about Python compiler traversing techniques ? or please direct me to
    some document if available on the net for reference ?
    "compiler traversing techniques" generates zero google hits, so maybe
    you could start by explaining what you're talking about...

    </F>

    Comment

    • Stewart Aitken

      #3
      Re: Python traverse

      >Namenick wrote:
      >
      >Hello, I am completely new to Python, would u please tell me something
      >about Python compiler traversing techniques ? or please direct me to
      >some document if available on the net for reference ?
      >
      >"compiler traversing techniques" generates zero google hits, so maybe
      >you could start by explaining what you're talking about...
      >
      ></F>
      *python compiler traversing " generates 41000 google hits. Is the issue
      the Abstract Syntax Tree traversal which is slightly inaccurate for
      python whose documentation mentions the Extrenely Concrete Syntax Tree,
      which in a sense is a two pass compiler.

      Comment

      Working...