[issue26532] build fails with address sanitizer

2017-02-24 Thread Jonas Jelten
Changes by Jonas Jelten <j...@stusta.net>: -- nosy: +jj ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue26532> ___ ___ Python

[issue22270] cache version selection for documentation

2014-08-24 Thread Jonas Jelten
New submission from Jonas Jelten: The Python version selection for the documentation should be cached. It's very annoying having to select the preferred version each time one follows a link, e.g. search result, irc post, etc. I'd like to see caching the preferred version in a cookie

[issue22270] cache version selection for documentation

2014-08-24 Thread Jonas Jelten
Jonas Jelten added the comment: it should rather be a opt-in feature. and when the redirection triggered, one should be able do click (you know it from wikipedia) back to page where one was redireced from. -- ___ Python tracker rep

[issue22108] python c api wchar_t*/char* passing contradiction

2014-08-01 Thread Jonas Jelten
Jonas Jelten added the comment: Indeed, that should do it, thanks. I still pledge for Python 4? always using char* internally to make this conversion obsolete ;) (except for windows) -- ___ Python tracker rep...@bugs.python.org http

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-31 Thread Jonas Jelten
Jonas Jelten added the comment: Martin, i think the most intuitive and easiest way for working with strings in C are just char arrays. Starting with the main() argv being char*, probably most programmers just go with char* and all the encoding just works. This is because contact with encoding

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-30 Thread Jonas Jelten
New submission from Jonas Jelten: The documentation and the code example at https://docs.python.org/3.5/extending/embedding.html#very-high-level-embedding #include Python.h int main(int argc, char *argv[]) { Py_SetProgramName(argv[0]); /* optional but recommended */ Py_Initialize

[issue22108] python c api wchar_t*/char* passing contradiction

2014-07-30 Thread Jonas Jelten
Jonas Jelten added the comment: I'd say Python should definitely change its internal string type to char*. Exposing handy wchar_t-char conversion functions don't resolve the data represenation enhancement. -- ___ Python tracker rep