> On 18 May 2020, at 22:07, Eli the Bearded <*@eli.users.panix.com> wrote: > > camelCase -> noCamelCase > snake_case -> no_snake_case > > One of those is easier to "grep" for than the other. I guess you mean that a case-sensitive grep can tell camelCase from noCamelCase. In all cases you need to use a \b to mark the boundary of the word. Otherwise the RE will match more than you expect, assuming a large set of identifiers. grep '\bsnake_case\b *.py Barry -- https://mail.python.org/mailman/listinfo/python-list
- why no camelCase in PEP 8? Lance E Sloan
- Re: why no camelCase in PEP 8? Chris Angelico
- Re: why no camelCase in PEP 8? Peter J. Holzer
- Re: why no camelCase in PEP 8? Chris Angelico
- Re: why no camelCase in PEP 8? Eli the Bearded
- Re: why no camelCase in PEP 8? Chris Angelico
- Re: why no camelCase in PEP 8? Juergen Brendel
- Re: why no camelCase in PEP 8? Dan Sommers
- Re: why no camelCase in PEP 8? Juergen Brendel
- Re: why no camelCase in PEP 8? Eli the Bearded
- Re: why no camelCase in PEP 8? Barry Scott
- Re: why no camelCase in PEP 8? Richard Damon
- Re: why no camelCase in PEP 8? Rhodri James
- Re: why no camelCase in PEP 8? Peter J. Holzer
- Re: why no camelCase in PEP 8? Roel Schroeven
- RE: why no camelCase in PEP 8? Schachner, Joseph
- Re: why no camelCase in PEP 8? Chris Angelico
- Re: why no camelCase in PEP 8? Jim
- Re: why no camelCase in PEP 8? Chris Angelico
- Re: why no camelCase in PEP ... DL Neil via Python-list
- Re: why no camelCase in PEP ... Jim