欢迎来到代码驿站!

Python代码

当前位置:首页 > 软件编程 > Python代码

gethostbyaddr在Python3中引发UnicodeDecodeError

时间:2022-11-06 09:20:48|栏目:Python代码|点击:

问题描述

我正在用Python 3.4.1来构建一个Django项目。

 manage.py runserver 引发UnicodeDecodeException。

如何解决?

查看以下(修剪)追溯:

追溯(最近的最后一次呼叫):

文件C:\ Python34\lib\socketserver.py,第429行__init__  self.server_bind()

文件C:\Python34\lib\site-packages\django\core \servers\basehttp.py,第121行,在server_bind 超级(WSGIServer,self).server_bind()

文件C:\Python34\lib\wsgiref \simple_server.py,第50行,server_bind  HTTPServer.server_bind(self)

文件C:\Python34\lib\http\server.py,第135行, server_bind  self.server_name = socket.getfqdn(host)

文件C:\Python34\lib\socket.py,第460行,getfqdn 主机名,别名,ipaddrs = gethostbyaddr(name)

UnicodeDecodeError:'utf-8'编解码器无法解码位置12中的0xcf字节无效连续字节 

每个请求,我的主机名:

 C:\Users\AnatoliyVik>主机名 AnatoliyVik-ПК 

解决方案

将主机名更改为不再包含西里尔字符解决问题。

感谢@拉法达的指导。

I'm trying to build a Django project with Python 3.4.1. manage.py runserver raises a UnicodeDecodeException.

How can this be resolved? See the below (trimmed) traceback:

Traceback (most recent call last):
  File "C:\Python34\lib\socketserver.py", line 429, in __init__
    self.server_bind()
  File "C:\Python34\lib\site-packages\django\core\servers\basehttp.py", line 121
, in server_bind
    super(WSGIServer, self).server_bind()
  File "C:\Python34\lib\wsgiref\simple_server.py", line 50, in server_bind
    HTTPServer.server_bind(self)
  File "C:\Python34\lib\http\server.py", line 135, in server_bind
    self.server_name = socket.getfqdn(host)
  File "C:\Python34\lib\socket.py", line 460, in getfqdn
    hostname, aliases, ipaddrs = gethostbyaddr(name)
UnicodeDecodeError: 'utf-8' codec can't decode byte 0xcf in position 12: invalid
 continuation byte

Per request, my hostname:

C:\Users\AnatoliyVik>hostname
AnatoliyVik-ПК

Changing the hostname to no longer include Cyrillic symbols resolves the problem.

Thanks to @Lafada for the guidance.

上一篇:Python Pandas基础操作详解

栏    目:Python代码

下一篇:python函数运行内存时间等性能检测工具

本文标题:gethostbyaddr在Python3中引发UnicodeDecodeError

本文地址:http://www.codeinn.net/misctech/218277.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有