comparison tests.py @ 0:032bc65ebafc

added core components
author George Fazekas <gyorgy.fazekas@eecs.qmul.ac.uk>
date Wed, 06 Mar 2013 15:45:48 +0000
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:032bc65ebafc
1 from DirectorySession import DirectorySession
2 import cherrypy
3
4 def test():
5 cherrypy.session['x'] = [1,2,3]
6
7 x = cherrypy.session['x']
8
9 print x
10
11
12 test()