Eventually, I guess. If I have to.
Python 3 Wall of Shame
61–70 of 80 posts
Re: Python 3 Wall of Shame
#62Out of the first 10 packages that haven't been ported to Python 3, I think nearly all are needed for Plone. (Although things like virtualenv are not a requirement for Plone, they are widely used in Plone development)
Re: Python 3 Wall of Shame
#63I've been doing a ton of Python work lately. Frankly, in my experience, Python 3 is more of a pain to develop with, primarily due to two factors: * Encoding specifications required. * maps/reduces returning iterators objects instead of a list. Having to call list() on anything I map is just a pain. I don't plan to switch to Python 3 until a compelling reason shows up. 2.7 works great for what I do. The real story her…
Re: Python 3 Wall of Shame
#64There's a lot of improvements in 3, but I'm sad to say I'm really hung up on print (and that's why I'm still using 2.x). Eventually, I guess. If I have to.
Re: Python 3 Wall of Shame
#65The real issue is that for both developers and library maintainers, moving to Python3 entails a lot of aggravation for a comparatively small net benefit.
Porting is actually fairly trivial in many cases. If you go and look at most of the porting stories for Python 3, you'll find the authors saying "I was worried it would be hard... but it was really easy".
Re: Python 3 Wall of Shame
#66I've been doing a ton of Python work lately. Frankly, in my experience, Python 3 is more of a pain to develop with, primarily due to two factors: * Encoding specifications required. * maps/reduces returning iterators objects instead of a list. Having to call list() on anything I map is just a pain. I don't plan to switch to Python 3 until a compelling reason shows up. 2.7 works great for what I do. The real story her…
Re: Python 3 Wall of Shame
#67What about other databases?
Edit: Mysql appears to be represented too
Re: Python 3 Wall of Shame
#68I am currently doing a similar sort of website, but trying to limit it to popular projects only. Also trying to group together a lot of the python 3 related articles and porting tips. My current research can be found here: http://goo.gl/SCImr Any corrections, or ideas for what can be on the site would be appreciated.
Re: Python 3 Wall of Shame
#69Interesting to see pymongo on that list. What about other databases? Edit: Mysql appears to be represented too