view tests.py @ 19:75e67af92ef8

updated server configuration and merged
author gyorgyf
date Tue, 19 Mar 2013 13:57:27 +0000
parents 032bc65ebafc
children
line wrap: on
line source
from DirectorySession import DirectorySession
import cherrypy

def test():
	cherrypy.session['x'] = [1,2,3]

	x = cherrypy.session['x']

	print x
	
	
test()