运行 Flask 后,我在控制台上看到了这个输出。我如何禁用它以及它是什么?我不知道它是如何出现的并且我使用它。感谢您的任何想法
* Serving Flask app 'app'
* Debug mode: on
WARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.
* Running on http://localhost:5000
Press CTRL+C to quit
* Restarting with stat
#define FLAG_LOWER 0x01
...
#define FLAG_XDIGIT 0x10
static unsigned int ctype_table[256] = {
0, /* 0x0 '\x00' */
...
0, /* 0x21 '!' */
...
FLAG_DIGIT|FLAG_XDIGIT, /* 0x30 '0' */
...
0, /* 0x3a ':' */
0, /* 0x3b ';' */
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
};
...
#define ISLOWER(c) (ctype_table[Py_CHARMASK(c)] & FLAG_LOWER)
...
* Debugger is active!
* Debugger PIN: 121-492-446
解释这是什么以及如何关闭它
ide 在 app.py 上面写入 从Tools.scripts.make_ctype导入方法