Python sendto()不适用于3.1(适用于2.6)

时间:2009-08-19 02:14:46

标签: python windows ubuntu udp sendto

由于某种原因,以下似乎在我运行python 2.6的ubuntu机器上运行完美,并在运行python 3.1的Windows xp框中返回错误

from socket import socket, AF_INET, SOCK_DGRAM
data = 'UDP Test Data'
port = 12345
hostname = '192.168.0.1'
udp = socket(AF_INET,SOCK_DGRAM)
udp.sendto(data, (hostname, port))

以下是python 3.1抛出的错误:

Traceback (most recent call last):
  File "sendto.py", line 6, in <module>
    udp.sendto(data, (hostname, port))
TypeError: sendto() takes exactly 3 arguments (2 given)

我已经查阅了python 3.1的文档,而sendto()只需要两个参数。关于可能导致这种情况的任何想法?

2 个答案:

答案 0 :(得分:6)

在Python 3中,字符串(第一个)参数必须是bytes或buffer类型,而不是str。如果提供可选的flags参数,您将收到该错误消息。将数据更改为:

d ata = b'UDP Test Data'

您可能希望在python.org错误跟踪器上提交有关该错误报告。 [编辑:已经如Dav所述提交]

...

>>> data = 'UDP Test Data'
>>> udp.sendto(data, (hostname, port))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: sendto() takes exactly 3 arguments (2 given)
>>> udp.sendto(data, 0, (hostname, port))
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: sendto() argument 1 must be bytes or buffer, not str
>>> data = b'UDP Test Data'
>>> udp.sendto(data, 0, (hostname, port))
13
>>> udp.sendto(data, (hostname, port))
13

答案 1 :(得分:4)

Python bugtracker的相关问题: http://bugs.python.org/issue5421