session.py

来自「python web programming 部分」· Python 代码 · 共 18 行

PY
18
字号
#
# $Workfile: Session.py $ $Revision: 2 $
# $Date: 8/27/01 11:24p $ $Author: Sholden $
#
import time

class Session:
    """Session object, for use by server and application code.

    Server uses only names beginning with an underscore."""

    def __init__(self, sessid):
        self._id = sessid
        self._auth = {}              # Authentication details, one per realm
        self._ctime = time.time()    # Creation time
        self._atime = self._ctime    # Access time
        

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?