[Python-Dev] Re: Reviving PEP 473

2021-03-15 Thread André Roberge
mation is already available (if one looks hard enough...), the cost of adding fields to existing exceptions should be carefully evaluated. André Roberge ___ Python-Dev mailing list -- python-dev@python.org To unsubscribe send an email to python-dev-le...@py

[Python-Dev] Re: [Python-ideas] Re: Re: Re: Amend PEP-8 to require clear, understandable comments instead of Strunk & White Standard English comments

2020-06-29 Thread André Roberge
013, frustrated at similar social/political discussions taking over some Python forum, and not having the mental fortitude to speak up, I quietly asked for my status to be converted to Emeritus ( https://www.python.org/psf/members/#emeritus-fellows) and withdrew for a

[Python-Dev] Re: PEP 340 - possible new name for block-statement

2005-04-29 Thread André Roberge
Robin Munn wrote: [snip] Another possibility just occurred to me. How about "using"? ~using EXPR as VAR: ~BLOCK Examples from PEP 340: == def synchronized(lock): ... using synchronized(myLock): ... = (+0) def opening(filename, mode="r"): ... using opening("/etc/passwd") as f