当前位置: 首页 > 工具软件 > CodeBe > 使用案例 >

pycharm提示This inspection detects code which can not be normally reached

程祯
2023-12-01

pycharm提示This inspection detects code which can not be normally reached.

noinspection PyUnreachableCode

tcp_server_socket.listen(128)

    while True:
        # 4. 等待新客户端的链接
        new_socket, client_addr = tcp_server_socket.accept()

        # 5. 为这个客户端服务
        p = threading.Thread(target=service_client, args=(new_socket,))
        p.start()

        
    # 关闭监听套接字
tcp_server_socket.close()
 # 关闭监听套接字
tcp_server_socket.close()

这句下边有横线:This inspection detects code which can not be normally reached.

运行没有影响,但是看着有点难受,找了网上的一些资料和其他人的文章,找到解决办法:

用PyCharm # no inspection修饰的作用,在需要跳过代码校验的部分加上注释即可

#noinspection PyUnreachableCode

 类似资料: