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
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
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
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