Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
568 views
in Technique[技术] by (71.8m points)

python - AttributeError: Assignment not allowed to composite field "task" in protocol message object

I'm using protocol-buffers python lib to send data,but it's have some problems, so

Traceback (most recent call last):
  File "test_message.py", line 17, in <module>
    ptask.task = task
  File "builddist.win32egggoogleprotobufinternalpython_message.py", line
513, in setter
AttributeError: Assignment not allowed to composite field "_task" in protocol message object.

the src as follows:

proto file:

message task {
    required int32 id = 1;
    required string msg = 2;
}

message task_info {
    required task task = 1;
}

python code:

task = yacc.task()
task.id = 1000
task.msg = u"test"
ptask = yacc.task_info() 
ptask.task = task # this line happen the runtime error 
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Try CopyFrom:

ptask.task.CopyFrom(task)

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...