📄 session.py
字号:
#
# $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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -