⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 jetcursor.py

📁 python web programming 部分
💻 PY
字号:
#
# 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -