Py3k just came out and has gobs of neat new stuff! I'm curious, what are SO pythonistas most excited about? What features are going to affect the way you write code on a daily basis, or have you been looking forward to?
|
closed as not constructive by casperOne♦ Apr 5 '12 at 13:38
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
There are a few things I'm quite interested in:
|
|||||
|
|
I hope that exception chaining catches on. Losing exception stack traces due to the antipattern presented below had been my pet peeve for a long time:
I know, I know, adding some context info to the original exception and preserving the original stack trace was possible, but it required a really ugly hack. Now you can (and should!) just:
and easily get both of the above. So, as a part of my holy mission against lost stack traces: Folks, don't forget the from clause when reraising exceptions! Thank you. |
|||||
|
|
Quite frankly, none of it. While I'll probably find myself using some of the new syntax, I mainly use Python for quick and simple scripts and regular expressions. I think the new features will make a lot of little things a little easier for a lot of people and a few big things easy for a few people. However, I am skeptical of any claims that a lot of people will end up finding massive gains in productivity. In short, I think these changes will make things a little better overall, but don't expect any miracles. |
|||
|
|
|
Not so much a feature, but I think the library cleanup will be of great help, esp. to new python programmers. On more than one occasion have I wanted to do something in python only to find two included libraries that offer that functionality, with no obvious reason why I should chose one over the other. |
|||
|
|
|
Here's a good article which explains the new features and/or differences with respect to python 2.x verses python 3. |
|||
|
|
|
Despite what they did to achieve smallest possible migration course with interpreted languages, I find the whole release of python3 as ten years of painful path of migration. Therefore I don't find it particularly attracting. The improvements they did are all good and important. Two different types for strings have been a real source of annoyances everywhere, therefore it's good they got rid from unicode object and introduced bytes object aside now unicode str. The bignum vs. num -change was from convenience and I think that too was a good choice. In overall they cleaned the language from harmful components they accumulated during the last ten years. Second worst thing they did was 10% slower implementation, as if speed wouldn't be python's problem already. I believe the release of python3 pushes down python's reputation rather than improves it. Right now they are back in the start with their language when it comes down to library support. |
|||||||
|
|
Not having to do as much..
And conversely, having to look at the docs again! I know python well enough now I can do most stuff without referring to pydoc, but every time that I do, I discover some other useful module or function. |
|||
|
|
|
The print statement. Actually, before even going to Python 2.6, we're purging What remains are some programs that actually produce stuff on stdout. For those, we may introduce a 2.6/3.0 compatible "print" function in one of our libraries. |
|||
|
|
|
Dictionary comprehensions aren't necessarily earth-shattering but they're very nice. While |
|||
|
|
|
One of the most underestimated features of Python 3 is the introduction of Abstract Base Classes. This is something that won't revolutionize Python programming straight away, but represents an interesting shift from a loose duck typing approach into the direction of better defined interfaces. More information can be found in PEP 3119. |
|||
|
|
|
Just about all of them as I am taking the release of Python 3 as motivation to learn the language. |
|||
|
|
|
Unicode (utf-8) is really important for people living in non-english speaking countries. I didn't like to specify the encoding at the beginning of the file, because I always forget. Usually my text is compatible with ASCII because I'm using UTF-8, so it is working without the encoding specification. But If I write my name (with an accent) or a € sign, it breaks ... I ended up writing unicode characters with their \uxxxx representation but it is kinda cryptic! |
|||
|
|