0

我在使用 Python 3.5 或 3.4 使库在 Windows 上运行时遇到问题(请参阅此问题 [1])。我想我会仔细看看为什么它失败了。

我相信问题归结为一些看起来像这样的代码,其结果我不明白:

import urllib.request
import sys
a = 'c:\Python35\Lib\site-packages\weasyprint\css\html5_ua.css'
b = a.encode(sys.getfilesystemencoding())  ## 'mbcs' on windows
c = urllib.request.pathname2url(b)

在解释器中运行它会给出:

TypeError:需要一个类似字节的对象,而不是“str”

但是,将最后一行更改为:

c = urllib.request.pathname2url(a)

它工作正常。类型(a)是<类'str'>

我很困惑,因为它告诉我它想要一个类似字节的对象,但它只有在我传递一个 <class 'str'> 对象时才有效。希望这很容易解释,我只是想念它。

使用命令行解释器的堆栈跟踪:

Python 3.5.1 (v3.5.1:37a07cee5969, Dec  6 2015, 01:38:48) [MSC v.1900 32 bit (Intel)] on win32
Type "help", "copyright", "credits" or "license" for more information.
>>> import urllib.request
>>> import sys
>>> a = 'c:\Python35\Lib\site-packages\weasyprint\css\html5_ua.css'
>>> b = a.encode(sys.getfilesystemencoding())  ## 'mbcs' on windows
>>> c = urllib.request.pathname2url(b)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "C:\Python35\lib\nturl2path.py", line 48, in pathname2url
    if not ':' in p:
TypeError: a bytes-like object is required, not 'str'
>>>

[1] WeasyPrint 在 Windows 上与 Python 3.x 一起使用

4

1 回答 1

1

urllib.request.pathname2url接受一个字符串,而不是一个类似字节的对象。您收到的错误消息来自bytes对象,当urllib尝试像字符串一样使用它并且bytes对象想要传递其他字节时。

于 2016-06-28T16:31:09.803 回答