[issue29236] 'an ASCII string of one or more PEM-encoded certificates' needs to be unicode

2017-01-10 Thread Maciej Piechorka
New submission from Maciej Piechorka: In documentation it is specified that cadata parameter in load_verify_locations is 'an ASCII string of one or more PEM-encoded certificates'. However the code is actually determining it based on PyUnicode_Check function so the 'ASCII s

[issue1111] Users' directories information

2007-09-06 Thread Maciej Piechorka
Maciej Piechorka added the comment: As a 'special library' I meant for example QT(metioned at least on #python channel but I can't find it in pyQT documentation) which is a nonsense in pygtk app. __ Tracker <[EMAIL PROTECTED]> <http://b

[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(), ".mypr

[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