ipdb输出和Python解释器之间的差异



以下是我的python脚本报告的错误:

TypeError                                 Traceback (most recent call last)
/home/jhourani/openbel-contributions/resource_generator/change_log.py in <module>()
     37         for k, v in namespaces.items():
     38             #ipdb.set_trace()
---> 39             if v[0]:
     40                 v[1].append(token)
     41 
TypeError: 'bool' object is not subscriptable

好吧,我想一切都很好。但当我在ipdb中进一步研究这个元素时,结果是:

>>> v
(False, [])
>>> type(v)
<class 'tuple'>
>>> v[0]
False
>>> if v[0]:
...     print('true')
... else:
...     print('false')
... 
false
>>> 

条件测试在ipdb中工作,但当我运行脚本时,解释器似乎将v视为布尔值,而不是可下标的元组。1.为什么?2.为什么两者有区别?

这是我写的代码块:

old_entrez = []
old_hgnc = []
old_mgi = []
old_rgd = []
old_sp = []
old_affy = []
# iterate over the urls to the .belns files
for url in parser.parse():
    namespaces = { 'entrez' : (False, old_entrez), 'hgnc' : (False, old_hgnc),
                   'mgi' : (False, old_mgi), 'rgd' : (False, old_rgd),
                   'swissprot' : (False, old_sp), 'affy' : (False, old_affy) }
    open_url = urllib.request.urlopen(url)
    for ns in namespaces.keys():
        if ns in open_url.url:
            namespaces[ns] = True
    marker = False
    for u in open_url:
        # skip all lines from [Values] up
        if '[Values]' in str(u):
            marker = True
            continue
        if marker is False:
            continue
        # we are into namespace pairs with '|' delimiter
        tokenized = str(u).split('|')
        token = tokenized[0]
        for k, v in namespaces.items():
            ipdb.set_trace()
            if v[0]:
                v[1].append(token)

您正在检查第一次迭代,它运行良好。

稍后会出现异常。继续循环,因为在某个时刻,您会遇到一个名称空间键,该键的值已设置为True而不是布尔值和列表的元组)。

为什么?因为在代码的早期,您会执行以下操作:

for ns in namespaces.keys():
    if ns in open_url.url:
        namespaces[ns] = True

注意那里的= True;你可能想把它设置为:

namespaces[ns] = (True, namespaces[ns][1])

注意,要循环遍历字典的键,可以直接执行:

for ns in namespaces:

并为自己保存一个属性查找、一个函数调用和一个全新列表对象的创建。

相关内容

  • 没有找到相关文章

最新更新