gethostbyaddr () plantea UnicodeDecodeError en Python 3 [duplicado]

Esta pregunta ya tiene una respuesta aquí:

Unicodedecodeerror con runserver 3 respuestas

Estoy tratando de construir un proyecto Django con Python 3.4.1.manage.py runserver genera una excepción UnicodeDecodeException.

¿Como puede ésto ser resuelto? Vea el seguimiento (recortado) a continuación:

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

Por solicitud, mi nombre de host:

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

Respuestas a la pregunta(1)

Su respuesta a la pregunta