python-attributedict icon indicating copy to clipboard operation
python-attributedict copied to clipboard

A dictionary object with attributes support - for Python.

Results 8 python-attributedict issues
Sort by recently updated
recently updated
newest added

According to [python pickle](https://docs.python.org/2/library/pickle.html#what-can-be-pickled-and-unpickled), object containing pickable object (**Including AttributeDict**) should pickle. But `AttributeDict` implements `__reduce__` which override the origin [pickle process](https://docs.python.org/2/library/pickle.html#pickling-and-unpickling-extension-types), and even call `__reduce__` on `__dict__` doesn't actually...

Error trace: ``` >>> data = AttributeDict({'foo': {'bar': [1, 2, 3]}, 'this.test': 1}) >>> data['this.test'] 1 >>> data.this.test Traceback (most recent call last): File "", line 1, in File "/home/gamesbook/.venvs/attr/local/lib/python2.7/site-packages/attributedict/collections.py",...

enhancement
feature