1
vote
2answers
388 views
How would you parse indentation (python style)?
How would you define your parser and lexer rules to parse a language that uses indentation for defining scope.
I have already googled and found a clever approach for parsing it by generatin …
2
votes
Lexical closures in Python
look at this:
for f in flist:
print f.func_closure
(<cell at 0x00C980B0: int object at 0x009864B4>,)
(<cell at 0x00C980B0: int object at 0x009864B4>,)
(<cell at …
1
vote
Setting up a Python web development environment on OSX
I've worked with django using only the included server in the manager.py script and have not had any trouble moving to a production environment.
If you put your application in a host that d …
