diff options
author | Trent Nelson <trent@trent.me> | 2012-09-19 01:50:06 (GMT) |
---|---|---|
committer | Trent Nelson <trent@trent.me> | 2012-09-19 01:50:06 (GMT) |
commit | 9a46105a897f6a4d6e2cf74cdb215d934fab76d9 (patch) | |
tree | ebebe7b0a27de63e3d808e55b0ab0dd69e159da8 /Misc | |
parent | 1da769a30295eb9e4acb5367b49c7cb21ca255cb (diff) | |
download | cpython-9a46105a897f6a4d6e2cf74cdb215d934fab76d9.zip cpython-9a46105a897f6a4d6e2cf74cdb215d934fab76d9.tar.gz cpython-9a46105a897f6a4d6e2cf74cdb215d934fab76d9.tar.bz2 |
#15965: Explicitly cast AT_FDCWD as (int).
Required on Solaris 10 (which defines AT_FDCWD as 0xffd19553),
harmless on other platforms.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -10,6 +10,9 @@ What's New in Python 3.3.1 Core and Builtins ----------------- +- Issue #15965: Explicitly cast AT_FDCWD as (int). Required on Solaris 10 + (which defines AT_FDCWD as 0xffd19553), harmless on other platforms. + - Issue #15926: Fix crash after multiple reinitializations of the interpreter. - Issue #15895: Fix FILE pointer leak in one error branch of |