奇怪的解压缩Jython中的自定义词典/映射

时间:2017-08-09 03:06:26

标签: python python-2.7 jython argument-unpacking

我在Jython中遇到了一个奇怪的字典/映射解包行为。最初,在SQLAlchemy的上下文中,但我设法将其缩小到以下最小的示例:

import collections

class CustomMapping(collections.MutableMapping):
    def __init__(self):
        self.storage = {}

    def __setitem__(self, key, value):
        self.storage[key] = value

    def __getitem__(self, key):
        print('Accessed CustomMapping instance for key %s' % key)
        return self.storage[key]

    def __delitem__(self, key):
        del self.storage[key]

    def __len__(self):
        return len(self.storage)

    def __iter__(self):
        for key in self.storage:
            yield key

    def __str__(self):
        return str(self.storage)

现在我运行这个测试代码:

print(dict(
    name='test', _some_stuff='abc', more='def', **CustomMapping())
)

在Python 2.7中,我得到了我期望的结果:

{'more': 'def', '_some_stuff': 'abc', 'name': 'test'}

但是在Jython 2.7.0中,我得到了这个:

  

访问密钥名称

的CustomMapping实例      

访问key _some_stuff

的CustomMapping实例      

访问更多关键字

的CustomMapping实例
{'more': 'def', '_some_stuff': 'abc', 'name': 'test'}

在调试器中设置断点还确认,在解包期间,对于外部字典中的每个键,都会访问__getitem__实例的CustomMapping方法。这非常令人费解,只发生在Jython中,对我来说看起来像个错误。虽然上面的示例使用dict作为外部函数,但任何其他函数都可以。

我希望有人可以阐明这种行为。在我的真实环境中,这在我的SQLAlchemy驱动的应用程序中引起了一些讨厌的行为。非常感谢任何帮助。

0 个答案:

没有答案