Re: preferences file

2019-01-26 Thread songbird
Karsten Hilbert wrote: > On Sat, Jan 26, 2019 at 05:35:26PM -0500, songbird wrote: > >> >> if the system doesn't have home directories but does have >> >> /usr/local you can put things in there (just check to make >> >> sure first that you aren't clobbering someone else's directories >> >> or fil

Re: preferences file

2019-01-26 Thread Karsten Hilbert
On Sat, Jan 26, 2019 at 05:35:26PM -0500, songbird wrote: > >> if the system doesn't have home directories but does have > >> /usr/local you can put things in there (just check to make > >> sure first that you aren't clobbering someone else's directories > >> or files :) ). > > > > I don't that

Re: preferences file

2019-01-26 Thread songbird
Karsten Hilbert wrote: > On Fri, Jan 25, 2019 at 11:04:51AM -0500, songbird wrote: > >> if the system doesn't have home directories but does have >> /usr/local you can put things in there (just check to make >> sure first that you aren't clobbering someone else's directories >> or files :) ). > >

Re: More elegant way to avoid this hacky implementation of single line reduce for grouping a collection?

2019-01-26 Thread Peter Otten
MRAB wrote: > On 2019-01-25 22:58, Travis Griggs wrote: >> >> grouped = reduce( >> lambda accum, each: (accum[0], >> accum[0][str(each)].append(each)), allValues, >> (defaultdict(list), None))[0] >> >> My question, only for the sake of learning python3 fu/enlighte