Skip to content

Commit 60403a5

Browse files
committed
Python 3.13.0
1 parent 8c80a26 commit 60403a5

File tree

6 files changed

+24
-10
lines changed

6 files changed

+24
-10
lines changed

Include/patchlevel.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919
#define PY_MAJOR_VERSION 3
2020
#define PY_MINOR_VERSION 13
2121
#define PY_MICRO_VERSION 0
22-
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_GAMMA
23-
#define PY_RELEASE_SERIAL 3
22+
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_FINAL
23+
#define PY_RELEASE_SERIAL 0
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.13.0rc3+"
26+
#define PY_VERSION "3.13.0"
2727
/*--end constants--*/
2828

2929
/* Version as a single 4-byte hex number, e.g. 0x010502B2 == 1.5.2b2.

Lib/pydoc_data/topics.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Autogenerated by Sphinx on Tue Oct 1 04:00:06 2024
2+
# Autogenerated by Sphinx on Mon Oct 7 06:59:36 2024
33
# as part of the release process.
44
topics = {'assert': 'The "assert" statement\n'
55
'**********************\n'

Misc/NEWS.d/3.13.0.rst

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.. date: 2024-10-05-23-53-06
2+
.. gh-issue: 125008
3+
.. nonce: ETANpd
4+
.. release date: 2024-10-07
5+
.. section: Core and Builtins
6+
7+
Fix :func:`tokenize.untokenize` producing invalid syntax for double braces
8+
preceded by certain escape characters.
9+
10+
..
11+
12+
.. date: 2024-10-03-22-26-39
13+
.. gh-issue: 124871
14+
.. nonce: tAMF47
15+
.. section: Core and Builtins
16+
17+
Fix compiler bug (in some versions of 3.13) where an assertion fails during
18+
reachability analysis.

Misc/NEWS.d/next/Core and Builtins/2024-10-03-22-26-39.gh-issue-124871.tAMF47.rst

-2
This file was deleted.

Misc/NEWS.d/next/Core_and_Builtins/2024-10-05-23-53-06.gh-issue-125008.ETANpd.rst

-2
This file was deleted.

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
This is Python version 3.13.0 release candidate 3
2-
=================================================
1+
This is Python version 3.13.0
2+
=============================
33

44
.. image:: https://github.com/python/cpython/workflows/Tests/badge.svg
55
:alt: CPython build status on GitHub Actions

0 commit comments

Comments
 (0)