-
Notifications
You must be signed in to change notification settings - Fork 65
What should the pattern [x, x] mean? #26
Comments
Having it check for a tuple of two equal items seems like the kind of thing that Haskell would do. Whether this is an argument in favor or against I am not sure. Mathematically / algebraically it makes perfect sense; but it also engenders the kind of cleverness that is one of my major gripes about Haskell (not that I am fluent in Haskell by any means). |
The two alternatives that I see here are either to reject it completely, or to just bind
|
Let me briefly pick up two things from @viridia's comment—probably in the spirit of @viridia's comment.
Haskell (and other languages) are much stricter in everything and in some sense about as much of contrast to Python as possible. Most of all, these languages allow for very thorough static analysis (that is basically what these languages are built for), so that they can get more context on what
We should be very careful about mixing mathematical notation/reasoning and programming in such scenarios. The problem ist that |
I have seen in few issues an argument that more people in Python are familiar with C-like languages than functional languages, and therefore we should do something like in the former. However, I think for many people Python may be the first language they learn (and I think it will be even more so in few years, taking into account current trends). My intuition about coinciding names was based on what would an inexperienced person think when they see:
I think this would read like "Does IOW this is different from sequence unpacking: when I see Even in the case where a variable appears once, I see matching against I don't think this is important, but may be occasionally useful (like similar feature for regexes). Finally, I am against blindly assigning the second value, if we are not supporting this now, it is better to raise an exception. |
Throwing an exception is a two-way door: we can always change it to one of the other alternatives later. Blindly assigning it, or using it as a comparison value, are both one-way doors. |
Yeah, let's recognize this and raise. The traditional "out" in languages like C is to declare it undefined, but since Python's standard is so weak, "whatever the current interpreter does" ends up becoming the standard, and docs stating it's really undefined don't change that. |
I just realized, while fiddling around with the implementation, that the desired check is trivially spelled with the current spec by mixing loads and stores: >>> def check(stuff):
... match stuff:
... case [x, .x, .x]:
... print(f"Three of a kind: {x}!")
... case [x, .x, _] | [x, _, .x] | [_, x, .x]:
... print(f"Pair: {x}!")
... case [_, _, _]:
... print("Junk!")
... case _:
... raise TypeError("Nice try!")
...
>>> check([1, 2, 3])
Junk!
>>> check([1, 2, 2])
Pair: 2!
>>> check([3, 1, 3])
Pair: 3!
>>> check([3, 3, 3])
Three of a kind: 3!
>>> check([3, 3, 3, 4])
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 10, in check
TypeError: Nice try! So I think we made the right choice here, either way. Do we want to point this out in the PEP, or let the community "discover" it themselves? 🙂 |
Also, off-topic... but while looking at the example above, I wonder if there is some way we could omit the It's only a quarter-baked idea though... I should probably go to sleep! |
The proposal to omit the On the flip side, multi dispatch has been on the wish list of a couple of people for quite some time. But they would then probably want to go at least one step further and do proper multi dispatch, arriving at something like: def fact:
case 0 | 1:
return 1
case int(n) if n > 0:
return n * fact(n-1) And now are back discussing some fundamental issues: clearly, calling Having multi-dispatch sure would be a great thing, but I think it is rather an entirely new discussion and not something that we should just bring in as an aside to pattern matching. |
Please create a fresh issue and copy those thoughts there. |
FWIW I am not delighted by patterns like |
There's disagreement over whether this checks for a tuple of two equal items, blindly assigns x the second item, or gets rejected statically. Please discuss.
The text was updated successfully, but these errors were encountered: