On Mon 12/16/19, 9:59 AM, "David Mertz"
mailto:me...@gnosis.cx>> wrote:
Admittedly, I was only lukewarm about making an insertion-order guarantee for
dictionaries too. But for sets I feel more strongly opposed. Although it
seems unlikely now, if some improved implementation of sets had the acc
Oddly, I did not get Mark's original e-mail, but am seeing replies here.
Piggybacking off of James' email here...
On 03/12/2019 16:15, Mark Shannon wrote:
> Hi Everyone,
>
> I am proposing a new PEP, still in draft form, to impose a limit of one
> million on various aspects
This is too-little, too-late (I was offline this past week), but for those who
enjoy digging through historical archives, the Tcl folks had an interesting
stubs mechanism that was *supposed* to solve the versioning issue (although I
suspect it hasn’t actually done much in that regard) in additio
Henk-Jaap noted that the grammar section of the language ref for yield and
return should also be updated from expression_list to starred_list with this
change. As noted elsewhere, this isn't in-sync with the Grammar file
(intentionally, if I understand correctly).
I took a look, and I believe t
First time contributing back -- if I should be filing a PEP or something like
that for this, please let me know.
Coming from https://bugs.python.org/issue32117, unparenthesized tuple unpacking
is allowed in assignments:
rest = (4, 5, 6)
a = 1, 2, 3, *rest
but not in yield or return sta