Deutsch English Français Italiano |
<vaoibg$3m9tm$2@dont-email.me> View for Bookmarking (what is this?) Look up another Usenet article |
Path: ...!weretis.net!feeder8.news.weretis.net!eternal-september.org!feeder3.eternal-september.org!news.eternal-september.org!.POSTED!not-for-mail From: Lawrence D'Oliveiro <ldo@nz.invalid> Newsgroups: comp.unix.shell,comp.unix.programmer,comp.lang.misc Subject: Re: Python (was Re: I did not inhale) Date: Thu, 29 Aug 2024 01:19:45 -0000 (UTC) Organization: A noiseless patient Spider Lines: 29 Message-ID: <vaoibg$3m9tm$2@dont-email.me> References: <uu54la$3su5b$6@dont-email.me> <va4aut$3q4g0$1@dont-email.me> <va4fbr$3qvij$1@dont-email.me> <va5108$3tmmd$1@dont-email.me> <va51ok$3tqr9$1@dont-email.me> <va5ec2$3vluh$1@dont-email.me> <va6q4g$c1a7$1@dont-email.me> <va6rpa$c6bg$1@dont-email.me> <va6se9$cb8e$1@dont-email.me> <20240826083330.00004760@gmail.com> <vaises$2k7o6$2@dont-email.me> <20240826155113.000005ba@gmail.com> <wwvo75eicla.fsf@LkoBDZeT.terraraq.uk> <vak9k9$2ujrs$1@dont-email.me> <valgpu$34s18$1@dont-email.me> <87y14hd4bk.fsf@nosuchdomain.example.com> <valnei$35rt8$2@dont-email.me> <87ikvlcs7i.fsf@nosuchdomain.example.com> <vamclm$3c4ke$1@dont-email.me> <87ttf4bdcx.fsf@nosuchdomain.example.com> <vaoaak$3l470$3@dont-email.me> <875xrkb2iq.fsf@nosuchdomain.example.com> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Injection-Date: Thu, 29 Aug 2024 03:19:45 +0200 (CEST) Injection-Info: dont-email.me; posting-host="a3e0b73fdd7ebf903f98fecca6ec3d09"; logging-data="3876790"; mail-complaints-to="abuse@eternal-september.org"; posting-account="U2FsdGVkX1+lkowyx/wcgsIAl2M6ZqyD" User-Agent: Pan/0.160 (Toresk; ) Cancel-Lock: sha1:qzopETPKFL4t//8KlIkeLTFoQU8= Bytes: 2715 On Wed, 28 Aug 2024 17:23:25 -0700, Keith Thompson wrote: > That's not the conventional way to format a docstring. If you're using > backslashes to splice lines in Python, it's likely you're doing > something wrong. What exactly is wrong? > I think "is not None" is more idiomatic. When I want an equality comparison, I use “==”, not “is”. > You don't need the \ if you put the ( on the same line. But I do otherwise. > You leave a space between "else" and ":". It's not wrong, but it's not > something I've ever seen. People who look at my code tend to get triggered by the little things; maybe it’s a way to avoid thinking about the big things? > In any language, if a block of code is so deeply indented that it's > confusing, you should consider refactoring it. (Though that's not > always the answer.) The point being, the same kind of code in a language with explicit statement brackets would reach the point of confusion later, rather than sooner.