Skip to content

Commit d51cc01

Browse files
committed
Python 3.15.0a5
1 parent bab1d7a commit d51cc01

File tree

101 files changed

+1094
-220
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+1094
-220
lines changed

Doc/library/base64.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ POST request.
6868
May assert or raise a :exc:`ValueError` if the length of *altchars* is not 2. Raises a
6969
:exc:`TypeError` if *altchars* is not a :term:`bytes-like object`.
7070

71-
.. versionchanged:: next
71+
.. versionchanged:: 3.15
7272
Added the *wrapcol* parameter.
7373

7474

@@ -285,7 +285,7 @@ Refer to the documentation of the individual functions for more information.
285285

286286
.. versionadded:: 3.13
287287

288-
.. versionchanged:: next
288+
.. versionchanged:: 3.15
289289
The *pad* parameter was added.
290290

291291

Doc/library/binascii.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ The :mod:`binascii` module defines the following functions:
8282
.. versionchanged:: 3.6
8383
Added the *newline* parameter.
8484

85-
.. versionchanged:: next
85+
.. versionchanged:: 3.15
8686
Added the *wrapcol* parameter.
8787

8888

Doc/library/mmap.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ To map anonymous memory, -1 should be passed as the fileno along with the length
241241
specified alone, and the flush operation will extend from *offset*
242242
to the end of the mmap.
243243

244-
.. versionchanged:: next
244+
.. versionchanged:: 3.15
245245
Added *flags* parameter to control synchronization behavior.
246246

247247

@@ -488,4 +488,4 @@ MS_* Constants
488488
* :data:`MS_INVALIDATE` - Invalidate cached data: invalidates other mappings
489489
of the same file so they can see the changes.
490490

491-
.. versionadded:: next
491+
.. versionadded:: 3.15

Doc/library/os.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1562,7 +1562,7 @@ or `the MSDN <https://msdn.microsoft.com/en-us/library/z0kc8e3z.aspx>`_ on Windo
15621562

15631563
.. availability:: Linux >= 6.11
15641564

1565-
.. versionadded:: next
1565+
.. versionadded:: 3.15
15661566

15671567

15681568
.. function:: ptsname(fd, /)

Doc/library/unicodedata.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -188,22 +188,22 @@ following functions:
188188

189189
Returns the Grapheme_Cluster_Break property assigned to the character.
190190

191-
.. versionadded:: next
191+
.. versionadded:: 3.15
192192

193193

194194
.. function:: indic_conjunct_break(chr, /)
195195

196196
Returns the Indic_Conjunct_Break property assigned to the character.
197197

198-
.. versionadded:: next
198+
.. versionadded:: 3.15
199199

200200

201201
.. function:: extended_pictographic(chr, /)
202202

203203
Returns ``True`` if the character has the Extended_Pictographic property,
204204
``False`` otherwise.
205205

206-
.. versionadded:: next
206+
.. versionadded:: 3.15
207207

208208

209209
.. function:: normalize(form, unistr, /)
@@ -262,7 +262,7 @@ following functions:
262262
Standard Annex #29, `"Unicode Text Segmentation"
263263
<https://www.unicode.org/reports/tr29/>`_.
264264

265-
.. versionadded:: next
265+
.. versionadded:: 3.15
266266

267267

268268
In addition, the module exposes the following constant:

Include/patchlevel.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@
2424
#define PY_MINOR_VERSION 15
2525
#define PY_MICRO_VERSION 0
2626
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
27-
#define PY_RELEASE_SERIAL 4
27+
#define PY_RELEASE_SERIAL 5
2828

2929
/* Version as a string */
30-
#define PY_VERSION "3.15.0a4+"
30+
#define PY_VERSION "3.15.0a5"
3131
/*--end constants--*/
3232

3333

Lib/pydoc_data/topics.py

Lines changed: 139 additions & 14 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)