You are using an out of date browser. It may not display this or other websites correctly. You should upgrade or use an alternative browser.
cpython patch
About this tag
The cpython patch tag covers discussions and updates related to security fixes and improvements in the CPython implementation of Python. Recent content focuses on CVE-2026-3479, a path traversal vulnerability in pkgutil.get_data that allowed callers to bypass documented path-safety rules. The Python Software Foundation assigned a low-severity CVSS score, but the bug broke a documented security boundary in a standard-library helper. A patch was quickly merged into CPython's main branch to enforce proper path constraints. This tag is relevant for developers and system administrators tracking Python security patches and understanding the impact of CPython fixes on their applications.
A newly disclosed Python security issue, tracked as CVE-2026-3479, shows that pkgutil.get_data() did not enforce the path-safety rules its documentation promised. In practice, that meant callers could pass resource names that enabled path traversal instead of being constrained to a...