成功解决 class 'AttributeError' : 'Editor' object has no attribute '_Editor__markerMap'

简介: 成功解决 class 'AttributeError' : 'Editor' object has no attribute '_Editor__markerMap'

解决问题

An error log file was found .what should be done with it?

<class 'AttributeError'>: 'Editor' object has no attribute '_Editor__markerMap'

--------------------------------------------------------------------------------

2019-05-13, 19:31:49

--------------------------------------------------------------------------------

<class 'AttributeError'>:

'Editor' object has no attribute '_Editor__markerMap'

--------------------------------------------------------------------------------

 File "F:\Program Files\Python\Python36\Lib\site-packages\eric6\QScintilla\Editor.py", line 6872, in viewportEvent

   self.__markerMap.calculateGeometry()

--------------------------------------------------------------------------------

Version Numbers:

 Python 3.6.4rc1

 Qt 5.10.1

 PyQt 5.10.1

 sip 4.19.8

 QScintilla 2.10.4

 WebEngine 61.0.3163.140

 eric6 18.05 (rev. 44249d49d892)

Platform: win32

3.6.4rc1 (v3.6.4rc1:3398dcb, Dec  5 2017, 20:41:32) [MSC v.1900 64 bit (AMD64)]

--------------------------------------------------------------------------------

Plugins Version Numbers:

 PluginAbout 18.05

 PluginCodeStyleChecker 18.05

 PluginEricapi 18.05

 PluginEricdoc 18.05

 PluginPipInterface 18.05

 PluginSyntaxChecker 18.05

 PluginTabnanny 18.05

 PluginTranslator 18.05

 PluginVcsGit 18.05

 PluginVcsMercurial 18.05

 PluginVcsPySvn 18.05

 PluginVcsSubversion 18.05

 PluginVirtualenvInterface 18.05

 PluginVmListspace 18.05

 PluginVmTabview 18.05

 PluginWizardDotDesktop 18.05

 PluginWizardE5MessageBox 18.05

 PluginWizardEricPlugin 18.05

 PluginWizardPyRegExp 18.05

 PluginWizardQColorDialog 18.05

 PluginWizardQFileDialog 18.05

 PluginWizardQFontDialog 18.05

 PluginWizardQInputDialog 18.05

 PluginWizardQMessageBox 18.05

 PluginWizardQRegExp 18.05

 PluginWizardQRegularExpression 18.05

 PluginWizardSetup 18.05


 

设计思

找到一个错误日志文件。应该如何处理它?

 

核心代

博主通过转换,暂时解决,但目前还没有搞清楚,错误的原因。

欢迎广大吃瓜网友留言深入探讨!

相关文章
|
4月前
|
TensorFlow 算法框架/工具 Python
【Tensorflow 2】解决'Tensor' object has no attribute 'numpy'
解决'Tensor' object has no attribute 'numpy'
93 3
|
5月前
|
并行计算 Serverless API
函数计算操作报错合集之出现 "AttributeError: 'NoneType' object has no attribute 'pop'" 错误,是什么原因
在使用函数计算服务(如阿里云函数计算)时,用户可能会遇到多种错误场景。以下是一些常见的操作报错及其可能的原因和解决方法,包括但不限于:1. 函数部署失败、2. 函数执行超时、3. 资源不足错误、4. 权限与访问错误、5. 依赖问题、6. 网络配置错误、7. 触发器配置错误、8. 日志与监控问题。
172 1
|
4月前
|
API C++ Python
【Azure 应用服务】Python fastapi Function在Azure中遇见AttributeError异常(AttributeError: 'AsgiMiddleware' object has no attribute 'handle_async')
【Azure 应用服务】Python fastapi Function在Azure中遇见AttributeError异常(AttributeError: 'AsgiMiddleware' object has no attribute 'handle_async')
|
4月前
|
TensorFlow API 算法框架/工具
【Tensorflow+keras】解决使用model.load_weights时报错 ‘str‘ object has no attribute ‘decode‘
python 3.6,Tensorflow 2.0,在使用Tensorflow 的keras API,加载权重模型时,报错’str’ object has no attribute ‘decode’
63 0
|
5月前
|
Python
【Python】已解决:(Python xlwt写入Excel报错)AttributeError: ‘function’ object has no attribute ‘font’
【Python】已解决:(Python xlwt写入Excel报错)AttributeError: ‘function’ object has no attribute ‘font’
133 0
|
5月前
|
Python
【Python】已解决:(Python写入Excel表格报错)‘NoneType’ object has no attribute ‘write’
【Python】已解决:(Python写入Excel表格报错)‘NoneType’ object has no attribute ‘write’
337 0
|
5月前
|
XML 数据格式 Python
【Python】已解决:AttributeError: ‘function’ object has no attribute ‘ELement’
【Python】已解决:AttributeError: ‘function’ object has no attribute ‘ELement’
207 0
|
5月前
|
API Python
【Python】已解决:AttributeError: ‘TfidfVectorizer’ object has no attribute ‘get_feature_names_out’
【Python】已解决:AttributeError: ‘TfidfVectorizer’ object has no attribute ‘get_feature_names_out’
195 0
|
6天前
|
JSON Java Apache
Java基础-常用API-Object类
继承是面向对象编程的重要特性,允许从已有类派生新类。Java采用单继承机制,默认所有类继承自Object类。Object类提供了多个常用方法,如`clone()`用于复制对象,`equals()`判断对象是否相等,`hashCode()`计算哈希码,`toString()`返回对象的字符串表示,`wait()`、`notify()`和`notifyAll()`用于线程同步,`finalize()`在对象被垃圾回收时调用。掌握这些方法有助于更好地理解和使用Java中的对象行为。
|
1月前
|
存储 Java 程序员
Java基础的灵魂——Object类方法详解(社招面试不踩坑)
本文介绍了Java中`Object`类的几个重要方法,包括`toString`、`equals`、`hashCode`、`finalize`、`clone`、`getClass`、`notify`和`wait`。这些方法是面试中的常考点,掌握它们有助于理解Java对象的行为和实现多线程编程。作者通过具体示例和应用场景,详细解析了每个方法的作用和重写技巧,帮助读者更好地应对面试和技术开发。
135 4