码迷,mamicode.com
首页 > 编程语言 > 详细

Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法

时间:2021-01-16 11:40:38      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:文件   ges   机器   tee   most   pack   back   python2   erro   

问题1:代码貌似没问题,运行时报错如下

e02c46afd9c845759c38d96a3ca2e6e1
Traceback (most recent call last):
File "/apps/svr/pyenv/versions/linkage/lib/python2.7/site-packages/linkage/op/boss_errorCheck/boss_errorCheck.py", line 353, in <module>
main()
File "/apps/svr/pyenv/versions/linkage/lib/python2.7/site-packages/linkage/op/boss_errorCheck/boss_errorCheck.py", line 347, in main
cust_bossagent(ext)
File "/apps/svr/pyenv/versions/linkage/lib/python2.7/site-packages/linkage/op/boss_errorCheck/boss_errorCheck.py", line 121, in cust_bossagent
custCreateCheck(BOSS_CUST_ID, resultext, cid)#客户注册eboss只同步没有异步反馈和归档
File "/apps/svr/pyenv/versions/linkage/lib/python2.7/site-packages/linkage/op/boss_errorCheck/boss_errorCheck.py", line 94, in custCreateCheck
bossagent = baseSQL.selectCustBossagent(BOSS_PRO_ORDER_CODE)
AttributeError: ‘module‘ object has no attribute ‘selectCustBossagent‘

解决:①确实是代码有问题,程序应该是在baseSQL没有搜索到selectCustBossagent这个方法,把selectCustBossagent方法写进去baseSQL

②python代码在编译后会生成以pyc为文件名后綴的字节码文件,该字节码文件会经过python解释器来生成机器码文件来运行。当再次运行python文件时,解释器会直接调用该pyc的字节码文件运行直到py文件发生改变(解释器运行时会对比pyc的生成时间和py的修改时间)

问题解决方法:不要将python代码文件命名为python预留字,模块名等

 

Python脚本报错AttributeError: ‘module’ object has no attribute’xxx’解决方法

标签:文件   ges   机器   tee   most   pack   back   python2   erro   

原文地址:https://www.cnblogs.com/fangxiaosheng/p/14281200.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!