UnicodeDecodeError:'ascii'编解码器无法解码位置0中的字节0xe0:序号不在范围内(128)

时间:2010-11-21 12:50:44

标签: python django google-app-engine

在我的一台机器上,当我使用谷歌应用引擎或django时出现错误。

例如:

  • 的app.yaml

    application: demas1252c
    version: 1
    runtime: python
    api_version: 1
    
    
    handlers:
       - url: /images
    static_dir: images
       - url: /css
    static_dir: css
       - url: /js
    static_dir: js
       - url: /.*
    script: demas1252c.py
    
  • demas1252c.py

    import cgi
    import wsgiref.handlers
    
    
    from google.appengine.ext.webapp import template
    from google.appengine.ext import webapp
    
    
    class MainPage(webapp.RequestHandler): 
    def get(self):
    values = {'id' : 10}
    
    
    self.response.out.write(template.render('foto.html', values))
    
    
    application = webapp.WSGIApplication([('/', MainPage)], debug = True)
    wsgiref.handlers.CGIHandler().run(application)
    
  • foto.html

    <!DOCTYPE html>
    <html lang="en">
        <head></head>
    <body>some</body>
    </html>
    

错误消息:

C:\artefacts\dev\project>"c:\Program Files\Google\google_appengine\dev_appserver.py" foto-hosting
Traceback (most recent call last):
  File "c:\Program Files\Google\google_appengine\dev_appserver.py", line 69, in <module>
    run_file(__file__, globals())
  File "c:\Program Files\Google\google_appengine\dev_appserver.py", line 65, in run_file
    execfile(script_path, globals_)
  File "c:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver_main.py", line 92, in <module>
    from google.appengine.tools import dev_appserver
  File "c:\Program Files\Google\google_appengine\google\appengine\tools\dev_appserver.py", line 140, in <module>
    mimetypes.add_type(mime_type, '.' + ext)
  File "C:\Python27\lib\mimetypes.py", line 344, in add_type
    init()
  File "C:\Python27\lib\mimetypes.py", line 355, in init
    db.read_windows_registry()
  File "C:\Python27\lib\mimetypes.py", line 260, in read_windows_registry
    for ctype in enum_types(mimedb):
  File "C:\Python27\lib\mimetypes.py", line 250, in enum_types
    ctype = ctype.encode(default_encoding) # omit in 3.x!
UnicodeDecodeError: 'ascii' codec can't decode byte 0xe0 in position 0: ordinal not in range(128)

当我在django中使用静态文件时(没有gae)我有非常相似的错误(使用不同的堆栈)。

我试图找到错误的原因并将代码添加到mimetypes.py:

print '====='
print ctype
ctype = ctype.encode(default_encoding) # omit in 3.x!

然后我在控制台中收到下一条消息:

=====
video/x-ms-wvx
=====
video/x-msvideo
=====
рєфшю/AMR
Traceback (most recent call last):

在注册表中HKCR / Mime / Database / ContentType /我有五个带俄语(cyrilic)字母的键。但是我该如何解决这个错误?

5 个答案:

答案 0 :(得分:75)

这是mimetypes中的错误,由注册表中的错误数据触发。 (рєфшю/AMR根本不是有效的MIME媒体类型。)

ctype_winreg.EnumKey返回的注册表项名称,mimetypes期望是Unicode字符串,但事实并非如此。与_winreg.QueryValueEx不同,EnumKey返回一个字节字符串(直接来自Windows API的ANSI版本; Python 2中的_winreg不使用Unicode接口,即使它返回Unicode字符串,所以它永远不会正确读取非ANSI字符。

因此尝试.encode失败并使用Unicode 解码错误尝试获取Unicode字符串,然后再将其编码回ASCII!

try:
    ctype = ctype.encode(default_encoding) # omit in 3.x!
except UnicodeEncodeError:
    pass

mimetypes中的这些行应该被删除。

ETA:added to bug tracker

答案 1 :(得分:8)

顺便说一下,问题的主要原因是QuickTime,它将非ascii mime类型添加到Windows注册表中。解决此问题的最简单方法是从注册表中手动查找并从HKCR/Mime/Database/ContentType/аудио/开始删除видео/的子部分。

答案 2 :(得分:5)

有补丁:

http://bugs.python.org/file18143/9291.patch

非常适合我。

将UnicodeEncodeError替换为UnicodeError

答案 3 :(得分:4)

来自python issue9291 by Alexandr Zarubkin (me21)的另一种解决方案:

在Lib \ site-packages文件夹中添加名为sitecustomize.py的文件。

import sys
sys.setdefaultencoding("cp1251")

答案 4 :(得分:1)

它是一个在注册表中使用latin MIME tipes的python错误 启动regedit并检查“HKEY_CLASSES_ROOT \ MIME \ Database \ Content Type”是否为非拉丁名称。