view tests.py @ 20:89978106f0bb

commented out dir session cleanup code
author gyorgyf
date Tue, 19 Mar 2013 16:32:14 +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()