Re: gnulib-tool.py: Prefer 'list.append(item)' over 'list += [item]'.

2024-04-08 Thread Collin Funk
Hi Bruno, On 4/8/24 6:28 PM, Bruno Haible wrote: > What about GLEmiter.py line 468? Oops, good catch. I must have been focused on not messing with line 460: emit += "# But here it has a '-gnulib' suffix.\n" But forgot to come back to it. You can apply the attached patch or fix it without a

Re: gnulib-tool.py: Prefer 'list.append(item)' over 'list += [item]'.

2024-04-08 Thread Bruno Haible
Hi Collin, > >> Sounds good. What do you think about two patches to normalize the > >> existing code with the conventions we've agreed upon: > >> > >> 1. Convert '+= [item]' to '.append(item)' > > > > Patch 0001. > > >> 2. Use single quotes for string literals. > > Patch 0002. Thank