view tests.py @ 21:a647bd7dd38d

added auto commit scrip
author gyorgyf
date Tue, 19 Mar 2013 16:50:54 +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()