Migrating to Python 3 with pleasure
github.com
Migrating to Python 3 with pleasure
1–10 of 181 posts
Re: Migrating to Python 3 with pleasure
#2Re: Migrating to Python 3 with pleasure
#3Re: Migrating to Python 3 with pleasure
#4the Path thing is incredible! I wasn't aware of it. I'll definitively be replacing my os.path.join calls for a more readable version of it.
Re: Migrating to Python 3 with pleasure
#5Re: Migrating to Python 3 with pleasure
#6the Path thing is incredible! I wasn't aware of it. I'll definitively be replacing my os.path.join calls for a more readable version of it.
Re: Migrating to Python 3 with pleasure
#7Thanks for the useful list!
Re: Migrating to Python 3 with pleasure
#8One surprising thing I learned from this document is that dicts now iterate in assignment order, not hash order. That's going to break some code for people.
Re: Migrating to Python 3 with pleasure
#9I've moved to python 3 over the past couple of months, after resisting for the better part of a decade. I like it. One surprising thing I learned from this document is that dicts now iterate in assignment order, not hash order. That's going to break some code for people.
Re: Migrating to Python 3 with pleasure
#10I've moved to python 3 over the past couple of months, after resisting for the better part of a decade. I like it. One surprising thing I learned from this document is that dicts now iterate in assignment order, not hash order. That's going to break some code for people.
Dicts never had an iteration order, though. If you relied on dicts iterating in order, you were kind of asking for it.