Differences From Artifact [c2702b5142]:
- File gluon/contrib/spreadsheet.py — part of check-in [eba4a35a21] at 2011-08-08 04:53:38 on branch develop — Added web2py 1.98.2 (user: spiffy, size: 9273) [annotate] [blame] [check-ins using]
To Artifact [92270cc749]:
- File gluon/contrib/spreadsheet.py — part of check-in [5e6e1e2c0a] at 2011-11-20 05:28:20 on branch feature/web2py_auth — Upgraded to web2py 1.99.2 (user: spiffy, size: 9274) [annotate] [blame] [check-ins using] [more...]
| ︙ | ︙ | |||
256 257 258 259 260 261 262 263 |
if __name__ == '__main__':
s = Sheet(0, 0)
s.cell('a', value="2")
s.cell('b', value="=sin(a)")
s.cell('c', value="=cos(a)**2+b*b")
print s['c'].computed_value
| > | 256 257 258 259 260 261 262 263 264 |
if __name__ == '__main__':
s = Sheet(0, 0)
s.cell('a', value="2")
s.cell('b', value="=sin(a)")
s.cell('c', value="=cos(a)**2+b*b")
print s['c'].computed_value
|