首页 > 编程语言 > 详细

python3 AttributeError: 'NoneType' object has no attribute 'split'

时间:2016-04-01 22:05:59      阅读:5812      评论:0      收藏:0      [点我收藏+]
技术分享
 1 from wsgiref.simple_server import make_server
 2  
 3 def RunServer(environ, start_response):
 4     start_response(200 ok,[(Content-Type,text/html)])
 5     return <h1>Hello world</h1>
 6 
 7 if __name__ == __main__:
 8     httpd = make_server(127.0.0.1,9000,RunServer)
 9     print(servering HTTP on port 9000)
10     httpd.serve_forever()
Code

运行时报错:

self.status.split(‘ ‘,1)[0], self.bytes_sent
AttributeError: ‘NoneType‘ object has no attribute ‘split‘

 

解决办法如下:

return [‘<h1>Hello world</h1>‘.encode(‘utf-8‘),]

 

python3 AttributeError: 'NoneType' object has no attribute 'split'

原文:http://www.cnblogs.com/Andy963/p/5346439.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!