Re: [Tutor] File like object for Windows registry

2006-08-03 Thread Alan Gauld
> My app should run on debian and windows platforms. Hard lines :-( > For storing the configuration data, I use the ConfigParser module. > What I find difficult is to determine a place for my configuration > file. Config parser basically produces an .in file. The rules that Windows uses to loca

Re: [Tutor] File like object for Windows registry

2006-08-03 Thread Henry Finucane
On 8/3/06, Andre Roberge <[EMAIL PROTECTED]> wrote: > On 8/3/06, Henry Finucane <[EMAIL PROTECTED]> wrote: > > On 8/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > > Hello! > > > > > > My app should run on debian and windows platforms. For storing the > > > configuration data, I use the Con

Re: [Tutor] File like object for Windows registry

2006-08-03 Thread Andre Roberge
On 8/3/06, Henry Finucane <[EMAIL PROTECTED]> wrote: > On 8/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > > Hello! > > > > My app should run on debian and windows platforms. For storing the > > configuration data, I use the ConfigParser module. > > > > What I find difficult is to determine

Re: [Tutor] File like object for Windows registry

2006-08-03 Thread Henry Finucane
On 8/3/06, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello! > > My app should run on debian and windows platforms. For storing the > configuration data, I use the ConfigParser module. > > What I find difficult is to determine a place for my configuration file. On > debian, it is simply > > o

[Tutor] File like object for Windows registry

2006-08-03 Thread K . Weinert
Hello! My app should run on debian and windows platforms. For storing the configuration data, I use the ConfigParser module. What I find difficult is to determine a place for my configuration file. On debian, it is simply os.path.join(os.path.expanduser("~")),"myconfig") but what am I suppose