[issue1111] Users' directories information

2007-09-06 Thread Martin v. Löwis
Martin v. Löwis added the comment: Can you please elaborate? What does that have to do with Python? -- nosy: +loewis __ Tracker [EMAIL PROTECTED] http://bugs.python.org/issue __

[issue1111] Users' directories information

2007-09-06 Thread Maciej Piechorka
Maciej Piechorka added the comment: It would allow to write in python more cross platform applications without writing it by hand and/or using special libraries. Something like: import sys import os import os.path # ... os.mkdir(os.path.join(sys.configdir(), .myprogram)) # ...

[issue1111] Users' directories information

2007-09-05 Thread Maciej Piechorka
New submission from Maciej Piechorka: User directories varies along systems. On unikses all user data is kept in $HOME directory. Configuration is kept in dot-files. However on others systems places are different. Using predefined values would be most convinent. -- components: Library