[Tutor] Working with bash (subversion)

Tiger12506 keridee at jayco.net
Thu Jul 19 01:20:46 CEST 2007


>  results.write(c.getoutput('svnadmin lslocks ' + eval(row)))

Mmm... I want to add that the eval function tries to execute whatever is in 
the argument passed as python expressions.

>>> eval('1+2')
3
>>> row = 4
>>> 1+row
5
>>> eval('1+row')
5
>>>

JS 



More information about the Tutor mailing list