Live data from Hacker News

Perl in Python

wildfish.com

1–2 of 2 posts

Re: Perl in Python

#2
I did something somewhat like this about 10 years ago, at http://www.dalkescientific.com/writings/diary/archive/2008/0... :

  for line in open("python_yacc.py"):
      if line =~ m/def (?P\w+) *(?P\(.*\)) *:/:
          print repr($1), repr($args)
I did not use import hooks, like this project does.

It got appreciative hisses when I did a lightning talk about it at a PyCon.