- 23 Nov, 2011 8 commits
-
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Benjamin Peterson authored
-
Antoine Pitrou authored
Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. Patch by Robert Xiao.
-
Antoine Pitrou authored
Issue #13458: Fix a memory leak in the ssl module when decoding a certificate with a subjectAltName. Patch by Robert Xiao.
-
- 22 Nov, 2011 31 commits
-
-
Giampaolo Rodola' authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
-
Amaury Forgeot d'Arc authored
-
Victor Stinner authored
-
Amaury Forgeot d'Arc authored
-
Amaury Forgeot d'Arc authored
an invalid integer value.
-
Benjamin Peterson authored
-
Giampaolo Rodola' authored
-
Charles-François Natali authored
TLS key only if the thread that called fork() had an associated auto thread state (this might not be the case for example for a thread created outside of Python calling into a subinterpreter).
-
Charles-François Natali authored
TLS key only if the thread that called fork() had an associated auto thread state (this might not be the case for example for a thread created outside of Python calling into a subinterpreter).
-
Amaury Forgeot d'Arc authored
-
Charles-François Natali authored
POSIX semaphores (among which FreeBSD < 8).
-
Charles-François Natali authored
-
Charles-François Natali authored
POSIX semaphores (among which FreeBSD < 8).
-
Giampaolo Rodola' authored
-
Giampaolo Rodola' authored
sched.scheduler class constructor's timefunc and delayfunct parameters are now optional. scheduler.enter and scheduler.enterabs methods gained a new kwargs parameter. Patch contributed by Matt Mulsow.
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
the Solaris issue is solved. But add assertion on the maximum character in various encoders: UTF-7, UTF-8, wide character (wchar_t*, Py_UNICODE*), unicode-escape, raw-unicode-escape. Fix also unicode_encode_ucs1() for backslashreplace error handler: Python is now always "wide".
-
Victor Stinner authored
-
Victor Stinner authored
* Replace PyUnicode_FromUnicode(NULL, 0) by PyUnicode_New(0, 0) * Replce PyUnicode_FromUnicode(str, len) by PyUnicode_FromWideChar(str, len) * Replace Py_UNICODE by wchar_t * posix_putenv() uses PyUnicode_FromFormat() to create the string, instead of PyUnicode_FromUnicode() + _snwprintf()
-
Victor Stinner authored
-
Victor Stinner authored
* Add tests for PyUnicode_EncodeDecimal() and PyUnicode_TransformDecimalToASCII() * Remove the unused "e" variable in replace()
-
Victor Stinner authored
-
Victor Stinner authored
-
Victor Stinner authored
* unicode_ready() has a simpler API * try to reuse unicode_empty and latin1_char singleton everywhere * Fix a reference leak in _PyUnicode_TranslateCharmap() * PyUnicode_InternInPlace() doesn't try to get a singleton anymore, to avoid having to handle a failure
-
Victor Stinner authored
It tests indirectly PyUnicode_Copy(): ensure that the string is a copy.
-
- 21 Nov, 2011 1 commit
-
-
Victor Stinner authored
-