Myles Prather
Results
11
issues of
Myles Prather
I find myself doing this a lot. ```python foo = Dict(i_return_a_dict()) foo.freeze() ``` I was thinking it would be nice to one-line that. ```python foo = Dict(i_return_a_dict(), freeze=True) # Or...