Skip to content

Commit 91c319e

Browse files
authored
Merge pull request #61 from ActiveState/2.7.18.10_Release
2.7.18.10 Release
2 parents 1dfcc63 + 813c5d1 commit 91c319e

File tree

5 files changed

+48
-1
lines changed

5 files changed

+48
-1
lines changed

Doc/library/codecs.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1006,6 +1006,8 @@ particular, the following variants typically exist:
10061006
+-----------------+--------------------------------+--------------------------------+
10071007
| cp1258 | windows-1258 | Vietnamese |
10081008
+-----------------+--------------------------------+--------------------------------+
1009+
| cp65001 | | Alias to ``utf_8`` encoding |
1010+
+-----------------+--------------------------------+--------------------------------+
10091011
| euc_jp | eucjp, ujis, u-jis | Japanese |
10101012
+-----------------+--------------------------------+--------------------------------+
10111013
| euc_jis_2004 | jisx0213, eucjis2004 | Japanese |

Include/patchlevel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
#define PY_RELEASE_SERIAL 0
2828

2929
/* Version as a string */
30-
#define PY_VERSION "2.7.18.9"
30+
#define PY_VERSION "2.7.18.10"
3131
/*--end constants--*/
3232

3333
/* Subversion Revision number of this file (not of the repository). Empty

Lib/encodings/aliases.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -516,6 +516,7 @@
516516
'utf8' : 'utf_8',
517517
'utf8_ucs2' : 'utf_8',
518518
'utf8_ucs4' : 'utf_8',
519+
'cp65001' : 'utf_8',
519520

520521
# uu_codec codec
521522
'uu' : 'uu_codec',

Misc/NEWS.d/2.7.18.10.rst

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
.. bpo: none
2+
.. date: 2024-08-08
3+
.. nonce:
4+
.. release date: 2024-08-08
5+
.. section: Core and Builtins
6+
7+
Relocate vcruntime140.dll to Python executable folder.
8+
9+
vcruntime140.dll has been moved to the same directory as Python.exe.
10+
11+
.. bpo: none
12+
.. date: 2024-08-08
13+
.. nonce:
14+
.. release date: 2024-06-26
15+
.. section: Core and Builtins
16+
17+
WSA Errors are handled on Unix
18+
19+
We now convert WSAE* errors to unix equvalents if they are not supported.
20+
21+
.. bpo: 36778
22+
.. date: 2019-05-10
23+
.. nonce:
24+
.. release date: 2024-06-06
25+
.. section: Core and Builtins
26+
27+
Handle Windows code page 65001
28+
29+
``cp65001`` encoding (Windows code page 65001) becomes an alias to ``utf_8``
30+
encoding.
31+
32+
.. gh: 114315
33+
.. date: 2024-06-27
34+
.. nonce:
35+
.. release date: 2024-08-08
36+
.. section: Core and Builtins
37+
38+
CVE-2024-0397 Fix locking in cert_store_stats and get_ca_certs
39+
40+
:meth:`ssl.SSLContext.cert_store_stats` and
41+
:meth:`ssl.SSLContext.get_ca_certs` now correctly lock access to the
42+
certificate store, when the :class:`ssl.SSLContext` is shared across
43+
multiple threads.

PC/layout/support/python.props

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@
3030
<Target Name="$$PYTHON_TARGET$$" Returns="@(PythonRuntime)">
3131
<ItemGroup>
3232
<_PythonRuntimeExe Include="$(PythonHome)\python*.dll" />
33+
<_PythonRuntimeExe Include="$(PythonHome)\vcruntime*.dll" />
3334
<_PythonRuntimeExe Include="$(PythonHome)\python*.exe" Condition="$(IncludePythonExe) == 'true'" />
3435
<_PythonRuntimeExe>
3536
<Link>%(Filename)%(Extension)</Link>

0 commit comments

Comments
 (0)