python - Pycharm 在 Python-Django 项目的 Debug模式下给出错误 "TypeError: ' NoneType' object is not callable"

标签 python django pycharm virtualenv

我已经在 Pycharm 中设置了 python-django 项目。

在运行模式下的 python manage.py runserver 命令上,它工作正常,但是当我在 Debug模式下运行项目时,出现以下异常:

Traceback (most recent call last):
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 2060, in <module>
    main()
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 2054, in main
    globals = debugger.run(setup['file'], None, None, is_module)
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 1405, in run
    return self._exec(is_module, entry_point_fn, module_name, file, globals, locals)
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/pydevd.py", line 1412, in _exec
    pydev_imports.execfile(file, globals, locals)  # execute the script
  File "/home/usmanmaqbool/Desktop/proj/manage.py", line 22, in <module>
    execute_from_command_line(sys.argv)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line
    utility.execute()
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/__init__.py", line 359, in execute
    self.fetch_command(subcommand).run_from_argv(self.argv)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/base.py", line 294, in run_from_argv
    self.execute(*args, **cmd_options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/commands/runserver.py", line 58, in execute
    super(Command, self).execute(*args, **options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/base.py", line 345, in execute
    output = self.handle(*args, **options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/commands/runserver.py", line 97, in handle
    self.run(**options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/core/management/commands/runserver.py", line 106, in run
    autoreload.main(self.inner_run, None, options)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/utils/autoreload.py", line 333, in main
    reloader(wrapped_main_func, args, kwargs)
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/utils/autoreload.py", line 304, in python_reloader
    exit_code = restart_with_reloader()
  File "/home/usmanmaqbool/Envs/proj/local/lib/python2.7/site-packages/django/utils/autoreload.py", line 290, in restart_with_reloader
    exit_code = os.spawnve(os.P_WAIT, sys.executable, args, new_environ)
  File "/home/usmanmaqbool/Downloads/pycharm-community-2018.3/helpers/pydev/_pydev_bundle/pydev_monkey.py", line 496, in new_spawnve
    return getattr(os, original_name)(mode, path, args, env)
  File "/home/usmanmaqbool/Envs/proj/lib/python2.7/os.py", line 573, in spawnve
    return _spawnvef(mode, file, args, env, execve)
  File "/home/usmanmaqbool/Envs/proj/lib/python2.7/os.py", line 549, in _spawnvef
    elif WIFSIGNALED(sts):
  File "/home/usmanmaqbool/Envs/proj/lib/python2.7/os.py", line 549, in _spawnvef
    elif WIFSIGNALED(sts):
TypeError: 'NoneType' object is not callable

Process finished with exit code 1

我还创建了新的 Virtua ENV 和新的虚拟 ENV 也有同样的问题!

编辑 1

数据库设置:

DATABASES = {
'default': {
    'ENGINE': 'django.db.backends.postgresql_psycopg2',
    'NAME': 'db_name',
    'USER': 'user',
    'PASSWORD': 'passworf',
    'HOST': 'localhost',
    'PORT': '',
    }
}

几天前它工作正常,但是在 Pycharm 的新更新版本之后,我只在一个项目上遇到了这个问题。

最佳答案

这是 PyCharm 2019.2 调试器中某些 Python 版本的回归,例如旧 2.7.x https://youtrack.jetbrains.com/issue/PY-36726

修复已准备就绪,将包含在 2019.2.1 次要更新中,预览版将于本周上线。

关于python - Pycharm 在 Python-Django 项目的 Debug模式下给出错误 "TypeError: ' NoneType' object is not callable",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57375072/

相关文章:

python - 使用不同长度的数组列表索引一维数组

django - 在 django 模板中渲染小部件

python - 如何分析 python 进程的内存使用情况?

redis - 作为 PyCharm 配置运行 redis-server

python - 覆盖类属性但不覆盖子类中的方法

Python-获取嵌套字典中的键列表

python - 使用 Python 从 HTML 生成目录

python - 脆皮表格和 bootstrap 3 没有显示错误消息

python - 如何使用 PyCharm 观察变量?

django - 这是PyCharm 4.0.5中的错误吗?