From mboxrd@z Thu Jan 1 00:00:00 1970 From: normalperson at yhbt.net (Eric Wong) Date: Thu, 16 Jan 2014 00:59:12 +0000 Subject: Policy on global variables In-Reply-To: References: Message-ID: <20140116005912.GA20306@dcvr.yhbt.net> "Jason A. Donenfeld" wrote: > In theory, passing around the variable, and not relying on a global, > is better. It allows us at somepoint to have multiple contexts, for, > say, implementing FastCGI or an event loop single-process multi > response model. This. I prefer we keep passing around the ctx variable to keep the code more flexible for future reuse. Of course, IIRC git itself has this limitation, too...