UnicodeDecodeError:“ascii”编解码器无法解码位置 0 的字节 0xe0:序数不在范围内(128)
Posted
技术标签:
【中文标题】UnicodeDecodeError:“ascii”编解码器无法解码位置 0 的字节 0xe0:序数不在范围内(128)【英文标题】:UnicodeDecodeError : 'ascii' codec can't decode byte 0xe0 in position 0: ordinal not in range(128) 【发布时间】:2011-05-13 09:08:08 【问题描述】:在我的一台机器上,当我使用 google 应用程序引擎或 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/ 我有五个带有俄语(西里尔)字母的键。但是我该如何解决这个错误呢?
【问题讨论】:
“default_encoding”的值是多少,现在看来是不能转换cyrilic的东西,这里使用UTF-8应该可以解决这个错误。 ascii.我尝试将其更改为 utf-8,但出现错误“UnicodeDecodeError: 'utf8' codec can't decode byte 0xef in position 0: invalid continuation byte”。无论如何,我从注册表中删除了这个键并且错误消失了。 这是一个错误 mimetype.py 在这个 url bugs.python.org/review/9291/diff/1663/Lib/mimetypes.py 处更改了 python 代码 【参考方案1】:这是mimetypes
中的一个错误,由注册表中的错误数据触发。 (рєфшю/AMR
根本不是有效的 MIME 媒体类型。)
ctype
是_winreg.EnumKey
返回的注册表项名称,mimetypes
期望它是一个 Unicode 字符串,但它不是。与_winreg.QueryValueEx
不同,EnumKey
返回一个字节字符串(直接来自 Windows API 的 ANSI 版本;Python 2 中的 _winreg
不使用 Unicode 接口,即使它返回 Unicode 字符串,所以它永远不会读取非-ANSI 字符正确)。
因此,.encode
的尝试失败并出现 UnicodeDecode在将 Unicode 字符串编码回 ASCII 之前尝试获取 Unicode 字符串时出错!
try:
ctype = ctype.encode(default_encoding) # omit in 3.x!
except UnicodeEncodeError:
pass
mimetypes
中的这些行应该被删除。
预计到达时间:added to bug tracker.
【讨论】:
谢谢,这解决了我在 Anaconda v2.1 上使用 IPython 的问题!【参考方案2】:它是一个在注册表中带有拉丁 MIME 提示的 python 错误 启动 regedit 并检查“HKEY_CLASSES_ROOT\MIME\Database\Content Type”是否有非拉丁名称。
【讨论】:
【参考方案3】:顺便说一句,问题的主要罪魁祸首是 QuickTime,它在 Windows 注册表中添加了非 ascii mime 类型。修复它的最简单方法是手动查找并从注册表中删除以аудио/
和видео/
开头的HKCR/Mime/Database/ContentType/
的子部分。
【讨论】:
【参考方案4】:有一个补丁:
http://bugs.python.org/file18143/9291.patch
非常适合我。
只需将 UnicodeEncodeError 替换为 UnicodeError
【讨论】:
接受的答案有效,我没有尝试这个,但我认为它也会有效。【参考方案5】:python issue9291 by Alexandr Zarubkin (me21) 的替代解决方案:
在 Lib\site-packages 文件夹中添加名为 sitecustomize.py 的文件。
import sys
sys.setdefaultencoding("cp1251")
【讨论】:
以上是关于UnicodeDecodeError:“ascii”编解码器无法解码位置 0 的字节 0xe0:序数不在范围内(128)的主要内容,如果未能解决你的问题,请参考以下文章
UnicodeDecodeError: 'ascii' 编解码器无法在位置解码字节 0xec
Python/Flask:UnicodeDecodeError/UnicodeEncodeError:“ascii”编解码器无法解码/编码
UnicodeDecodeError:“ascii”编解码器无法解码位置 1 的字节 0xef
如何避免 Redshift Python UDF 出现 UnicodeDecodeError ascii 错误?
python2 当中 遇到 UnicodeDecodeError UnicodeDecodeError: 'ascii' codec can't decode byte 0xe
UnicodeDecodeError:'ascii'编解码器无法解码位置 284 中的字节 0x93:序数不在范围内(128)[重复]