Re: How best to pass arbitrary parameters from one function to another

2008-09-30 Thread John O'Hagan
On Tue Sep 30 11:32:41 CEST 2008, Steven D'Aprano >On Tue, 30 Sep 2008 08:58:15 +, John O'Hagan wrote: > >> Hi Pythonistas, >> >> I'm looking for the best way to pass an arbitrary number and type of >> variables created by one function to another. They can't be global >> because they may ha

Re: How best to pass arbitrary parameters from one function to another

2008-09-30 Thread Steven D'Aprano
On Tue, 30 Sep 2008 08:58:15 +, John O'Hagan wrote: > Hi Pythonistas, > > I'm looking for the best way to pass an arbitrary number and type of > variables created by one function to another. They can't be global > because they may have different values each time they are used in the > second

Re: How best to pass arbitrary parameters from one function to another

2008-09-30 Thread Bruno Desthuilliers
John O'Hagan a écrit : Hi Pythonistas, I'm looking for the best way to pass an arbitrary number and type of variables created by one function to another. > They can't be global because they may have different values each time they are used in the second function. So far I'm trying to do som