Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
296 views
in Technique[技术] by (71.8m points)

python - Why is there an error when i use pygame in vscode but not in pycharm?

so this is exactly what I wrote in vs code

import pygame


WIDTH, HEIGHT = 600, 500

WIN = pygame.display.set_mode((WIDTH, HEIGHT))

running = True

while running:
 for event in pygame.event.get():
  if event.type == pygame.QUIT:
   running = False
   

I get the error Module 'pygame' has no 'QUIT' member there is an error in if statement

   if event.type == pygame.QUIT:

its pygame.QUIT

question from:https://stackoverflow.com/questions/65646955/why-is-there-an-error-when-i-use-pygame-in-vscode-but-not-in-pycharm

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Reason: For security reasons, Pylint only trusts C extensions from the standard library stdlib by default, but the module "pygame" does not come from it.

Please add the following settings in settings.json to add it to the whitelist:

"python.linting.pylintArgs": ["--extension-pkg-whitelist=pygame"],

enter image description here

Or use the following settings:

 "python.linting.pylintArgs": [ "--errors-only", "--generated-members=pygame.* " ]

enter image description here


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...