- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我正在将 django 与 postgresql 一起使用,每当我尝试保存或删除任何内容时,都会发生此错误 -
Traceback (most recent call last):
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 138, in run
self.finish_response()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 180, in finish_response
self.write(data)
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 274, in write
self.send_headers()
Not Found: /favicon.ico
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 332, in send_headers
self.send_preamble()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 255, in send_preamble
('Date: %s\r\n' % format_date_time(time.time())).encode('iso-8859-1')
[02/Aug/2016 18:30:14] "GET /favicon.ico HTTP/1.1" 404 2044
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 453, in _write
self.stdout.write(data)
File "c:\program files (x86)\python35-32\Lib\socket.py", line 593, in write
return self._sock.send(b)
ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine
[02/Aug/2016 18:30:14] "GET /api/delete/ HTTP/1.1" 500 59
----------------------------------------
Exception happened during processing of request from ('127.0.0.1', 1712)
Traceback (most recent call last):
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 138, in run
self.finish_response()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 180, in finish_response
self.write(data)
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 274, in write
self.send_headers()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 332, in send_headers
self.send_preamble()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 255, in send_preamble
('Date: %s\r\n' % format_date_time(time.time())).encode('iso-8859-1')
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 453, in _write
self.stdout.write(data)
File "c:\program files (x86)\python35-32\Lib\socket.py", line 593, in write
return self._sock.send(b)
ConnectionAbortedError: [WinError 10053] An established connection was aborted by the software in your host machine
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 141, in run
self.handle_error()
File "C:\Users\sushant\Desktop\projects\drfapi\venv\lib\site-packages\django\core\servers\basehttp.py", line 92, in handle_error
super(ServerHandler, self).handle_error()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 368, in handle_error
self.finish_response()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 180, in finish_response
self.write(data)
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 274, in write
self.send_headers()
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 331, in send_headers
if not self.origin_server or self.client_is_modern():
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 344, in client_is_modern
return self.environ['SERVER_PROTOCOL'].upper() != 'HTTP/0.9'
TypeError: 'NoneType' object is not subscriptable
During handling of the above exception, another exception occurred:
Traceback (most recent call last):
File "c:\program files (x86)\python35-32\Lib\socketserver.py", line 628, in process_request_thread
self.finish_request(request, client_address)
File "c:\program files (x86)\python35-32\Lib\socketserver.py", line 357, in finish_request
self.RequestHandlerClass(request, client_address, self)
File "C:\Users\sushant\Desktop\projects\drfapi\venv\lib\site-packages\django\core\servers\basehttp.py", line 99, in __init__
super(WSGIRequestHandler, self).__init__(*args, **kwargs)
File "c:\program files (x86)\python35-32\Lib\socketserver.py", line 684, in __init__
self.handle()
File "C:\Users\sushant\Desktop\projects\drfapi\venv\lib\site-packages\django\core\servers\basehttp.py", line 179, in handle
handler.run(self.server.get_app())
File "c:\program files (x86)\python35-32\Lib\wsgiref\handlers.py", line 144, in run
self.close()
File "c:\program files (x86)\python35-32\Lib\wsgiref\simple_server.py", line 35, in close
self.status.split(' ',1)[0], self.bytes_sent
AttributeError: 'NoneType' object has no attribute 'split'
----------------------------------------
发生的情况是,每当存在数据库保存\删除命令时,它都会执行两次,第一次没有错误,第二次抛出此错误,因此保存完成了两次。
据我了解,某些程序正在阻止它(如错误所述),因此我删除了我拥有的防病毒软件,但没有得出结论。
有人知道这是怎么回事吗?
编辑:这是一个 Python 错误,已报告 here
最佳答案
我已经在 Python 中 checkin 了一个修复程序:https://github.com/python/cpython/pull/9713
它将在下一版本的 Python 3.7 及更高版本中提供。
关于python - Django ConnectionAbortedError : [WinError 10053] An established connection was aborted by the software in your host machine,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38721428/
我在使用 xcode-select --install 安装命令行开发工具时遇到问题使用 Xcode 11 beta 和 Mac Mojave 10.14.5。 下载开始发生,然后立即停止并显示一条消
我们的一位用户对 ClickOnce 有一个非常严重的问题。该错误是一个经典错误: Following errors were detected during this operation.
问题很简单,HKEY_CURRENT_USER\Software\Wow6432Node\Classes和HKEY_CURRENT_USER\Software\Classes\Wow6432Node有
当我尝试将应用程序提交上传到我所属组织的 itunes connect 时,我收到了上述错误,但 itunes connect 用户名与我的 Apple 开发者 ID 不同。 问题是我有一个 Appl
我是 Android 新手。我安装了 Eclipse Kepler 版本。 我点击了这个链接。 https://sites.google.com/site/barsham/list-of-topics
我正在为 Web 应用程序的模块编写设计文档,在研究设计文档时,我遇到了名称为 Software Design Document (SDD)/Software Design Description(S
我有以下代码 public class A { public double foo(double y) { return real_value;
几天前向我提出了这个问题。要求是设计一个向用户提供体育内容(例如足球)的移动应用。 该应用程序将允许用户向特定团队订阅。 根据用户的团队选择,这些应用仅在用户的主屏幕上提供与该团队相关的内容。 当然,
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 5年前关闭。 Improve this qu
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 3年前关闭。 Improve thi
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 5年前关闭。 Improve this questi
关闭。这个问题需要更多 focused .它目前不接受答案。 想改进这个问题?更新问题,使其仅关注一个问题 editing this post . 7年前关闭。 Improve this questi
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 7年前关闭。 Improve thi
已经有大量关于代码度量的讨论(例如: What is the fascination with code metrics? )。我(作为一名软件开发人员)对这些指标非常感兴趣,因为我认为它们可以帮助人
关闭。这个问题需要更多focused .它目前不接受答案。 想改进这个问题吗? 更新问题,使其只关注一个问题 editing this post . 关闭 8 年前。 Improve this qu
我们即将进行一些面试,我们正在招聘这些人担任质量保证职务。参与开发人员的目的是了解此人是否会与开发团队很好地合作。 开发人员应该向质量检查人员提出的最重要的重要问题是什么?我在寻找实用的问题,而不是蓬
我现在了解软件的源版本和二进制版本之间的主要区别。一个很好的问题here。 我需要在Linux机器上安装Node.js,并选择二进制发行版,因为它不需要编译/安装。我下载了tar,解压缩了文件,即可使
我有以下问题 (1) “软件损坏”一词是什么意思?任何具体的例子都会有很大的帮助。 (2) 如果出现所谓的“软件损坏”,如何修复? 非常感谢您的回复。 最佳答案 软件损坏 是一个含糊不清的术语。我可以
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 4年前关闭。 Improve thi
关闭。这个问题不满足Stack Overflow guidelines .它目前不接受答案。 想改善这个问题吗?更新问题,使其成为 on-topic对于堆栈溢出。 6年前关闭。 Improve thi
我是一名优秀的程序员,十分优秀!