Changeset 1715
- Timestamp:
- 08/28/07 14:10:42
- Files:
-
- branches/cherrypy-3.0.x/cherrypy/lib/sessions.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/cherrypy-3.0.x/cherrypy/lib/sessions.py
r1707 r1715 344 344 """ 345 345 346 def __init__(self): 346 def __init__(self, id=None, **kwargs): 347 Session.__init__(self, id, **kwargs) 347 348 self.db = self.get_db() 348 349 self.cursor = self.db.cursor()

