Staging
v0.5.1
https://github.com/python/cpython
Revision 85ab974f78c0ebcfa611639864640d0273eb5466 authored by Victor Stinner on 28 November 2018, 11:42:40 UTC, committed by GitHub on 28 November 2018, 11:42:40 UTC
Fix memory leak in PyUnicode_EncodeLocale() and
PyUnicode_EncodeFSDefault() on error handling.

Fix unicode_encode_locale() error handling.

(cherry picked from commit bde9d6bbb46ca59bcee5d5060adaa33c3ffee3a6)
1 parent 80db40c
Raw File
Tip revision: 85ab974f78c0ebcfa611639864640d0273eb5466 authored by Victor Stinner on 28 November 2018, 11:42:40 UTC
bpo-34523, bpo-35322: Fix unicode_encode_locale() (GH-10759) (GH-10761)
Tip revision: 85ab974
contextvars.py
from _contextvars import Context, ContextVar, Token, copy_context


__all__ = ('Context', 'ContextVar', 'Token', 'copy_context')
back to top