Coder Social home page Coder Social logo

Comments (5)

pohmelie avatar pohmelie commented on June 1, 2024 1

Also, this creates disambiguations:

>>> import addict
>>> addict.__version__
'2.1.1'
>>> from addict import Dict
>>> l = [1, 2, 3]
>>> d = Dict(l=l)
>>> d.l
[1, 2, 3]
>>> d.l is l
False
>>> d.l = l
>>> d.l is l
True
>>>

from addict.

egao1980 avatar egao1980 commented on June 1, 2024

This is more of documentation issue than a bug.
Dict() copies dict/list/tuple structure so this is expected behaviour.

    def test_recursive_wrapping_refs(self):
      d = Dict(a=1, b=2)
      a = Dict(d=d)
      c = Dict(d=d)
      c.d.z = 3
      self.assertDictEqual(a.d, d)
      self.assertDictContainsSubset(d, c.d)
      self.assertIsNot(a.d, d)
      self.assertIsNot(c.d, d)

from addict.

pohmelie avatar pohmelie commented on June 1, 2024

It is implicit copying. Don't you think explicit using of copy module will be more pythonic, so Dict behavior will be closer to dict.

from addict.

mewwts avatar mewwts commented on June 1, 2024

Hey @pohmelie,

I understand that the behavior is a bit confusing. It's an attempt to balance between expectations of the addict module. Today, whatever you give addict in the constructor will be recursively iterated over and any dict will be turned into a Dict. In contrast, whatever you set as an attribute on the Dict instance will not be copied. While this is the way we intended it to work, it can lead to surprises.

At this point, I am leaning towards moving today's __init__-functionality in it's own static method, say Dict.from_dict, and let __init__ do as you expect over. This would however warrant a major release.

Thanks @egao1980 for stepping in and answering questions! 👍

from addict.

hellocoldworld avatar hellocoldworld commented on June 1, 2024

hello @mewwts is the new from_dict method already available? I think it could greatly improve the reading of the code, so if it's not done, I think it would be a great idea!

from addict.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.