Python 3: Ten years later
archive.fosdem.org
Python 3: Ten years later
1–10 of 93 posts
Re: Python 3: Ten years later
#2Re: Python 3: Ten years later
#3Re: Python 3: Ten years later
#4Re: Python 3: Ten years later
#5I wish they spent the effort on making Python 2 faster and removing GIL instead.
Re: Python 3: Ten years later
#6Python 3 is worth it just for Unicode handling. As someone using a language that is uses non-ASCII characters, thank you if you're using Python 3 and made your software more internationally compatible.
Re: Python 3: Ten years later
#7Re: Python 3: Ten years later
#8Python 3 is worth it just for Unicode handling. As someone using a language that is uses non-ASCII characters, thank you if you're using Python 3 and made your software more internationally compatible.
...or you could just use the unicode type in Python 2; like: all of my Python 2 software handled languages in other character sets correctly (and yes: this was stress tested often as I have had many many users from China and the Middle East). There was absolutely nothing wrong with Python 2 and Unicode, and if anything Python 3 just made a bunch of stuff impossible to do correctly (in particular encodings for filenam…
Re: Python 3: Ten years later
#9Python 3 is worth it just for Unicode handling. As someone using a language that is uses non-ASCII characters, thank you if you're using Python 3 and made your software more internationally compatible.
...or you could just use the unicode type in Python 2; like: all of my Python 2 software handled languages in other character sets correctly (and yes: this was stress tested often as I have had many many users from China and the Middle East). There was absolutely nothing wrong with Python 2 and Unicode, and if anything Python 3 just made a bunch of stuff impossible to do correctly (in particular encodings for filenam…
People constantly complain, but honestly changes like Python 3 have to happen - the alternative is just another completely new language taking over instead.