jetcursor.py
来自「python web programming 部分」· Python 代码 · 共 12 行
PY
12 行
#
# jetCursor.py: jet variant on ANSI cursor
#
from ccCursor import ccCursor
class jetCursor(ccCursor):
"""Jet cursor using "+" for concatenation and specialized DROP_INDEX."""
def DROP_INDEX(self, index, table):
return "DROP INDEX %s ON %s" % (index, table)
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?