annotate tests.py @ 14:e48866766f56

Added audio, removed original audio
author Daniele Barchiesi <daniele.barchiesi@eecs.qmul.ac.uk>
date Wed, 13 Mar 2013 16:20:00 +0000
parents 032bc65ebafc
children
rev   line source
gyorgy@0 1 from DirectorySession import DirectorySession
gyorgy@0 2 import cherrypy
gyorgy@0 3
gyorgy@0 4 def test():
gyorgy@0 5 cherrypy.session['x'] = [1,2,3]
gyorgy@0 6
gyorgy@0 7 x = cherrypy.session['x']
gyorgy@0 8
gyorgy@0 9 print x
gyorgy@0 10
gyorgy@0 11
gyorgy@0 12 test()