Skip to content

Commit 06db319

Browse files
committed
Merge branch 'main' into inlinecomp2
* main: pythongh-102304: Consolidate Direct Usage of _Py_RefTotal (pythongh-102514) pythongh-102192: Replace PyErr_Fetch/Restore etc by more efficient alternatives (in Objects/) (python#102218) pythongh-102507 Remove invisible pagebreak characters (python#102531) pythongh-102515: Remove unused imports in the `Lib/` directory (python#102516) Remove or update bitbucket links (pythonGH-101963) pythongh-101100: Fix sphinx warnings in `zipapp` and `zipfile` modules (python#102526) pythonGH-102397: Fix segfault from race condition in signal handling (python#102399) Fix style in argparse.rst (python#101733) Post 3.12.0a6 fix typo in async generator code field name `ag_code` (python#102448) Python 3.12.0a6
2 parents 90b34de + cbb0aa7 commit 06db319

File tree

160 files changed

+1089
-482
lines changed

Some content is hidden

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

160 files changed

+1089
-482
lines changed

Doc/distributing/index.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,7 @@ Key terms
3939
developers and documentation authors responsible for the maintenance and
4040
evolution of the standard packaging tools and the associated metadata and
4141
file format standards. They maintain a variety of tools, documentation
42-
and issue trackers on both `GitHub <https://github.com/pypa>`__ and
43-
`Bitbucket <https://bitbucket.org/pypa/>`__.
42+
and issue trackers on `GitHub <https://github.com/pypa>`__.
4443
* ``distutils`` is the original build and distribution system first added
4544
to the Python standard library in 1998. While direct use of ``distutils``
4645
is being phased out, it still laid the foundation for the current packaging

Doc/installing/index.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,7 @@ Key terms
5252
developers and documentation authors responsible for the maintenance and
5353
evolution of the standard packaging tools and the associated metadata and
5454
file format standards. They maintain a variety of tools, documentation,
55-
and issue trackers on both `GitHub <https://github.com/pypa>`__ and
56-
`Bitbucket <https://bitbucket.org/pypa/>`__.
55+
and issue trackers on `GitHub <https://github.com/pypa>`__.
5756
* ``distutils`` is the original build and distribution system first added to
5857
the Python standard library in 1998. While direct use of ``distutils`` is
5958
being phased out, it still laid the foundation for the current packaging

Doc/library/argparse.rst

+3-3
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ around an instance of :class:`argparse.ArgumentParser`. It is a container for
3434
argument specifications and has options that apply to the parser as whole::
3535

3636
parser = argparse.ArgumentParser(
37-
prog = 'ProgramName',
38-
description = 'What the program does',
39-
epilog = 'Text at the bottom of help')
37+
prog='ProgramName',
38+
description='What the program does',
39+
epilog='Text at the bottom of help')
4040

4141
The :meth:`ArgumentParser.add_argument` method attaches individual argument
4242
specifications to the parser. It supports positional arguments, options that

Doc/library/venv.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -478,7 +478,7 @@ subclass which installs setuptools and pip into a created virtual environment::
478478
:param context: The information for the virtual environment
479479
creation request being processed.
480480
"""
481-
url = 'https://bitbucket.org/pypa/setuptools/downloads/ez_setup.py'
481+
url = "https://bootstrap.pypa.io/ez_setup.py"
482482
self.install_script(context, 'setuptools', url)
483483
# clear up the setuptools archive which gets downloaded
484484
pred = lambda o: o.startswith('setuptools-') and o.endswith('.tar.gz')

Doc/library/zipapp.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ using the :func:`create_archive` function::
215215
>>> import zipapp
216216
>>> zipapp.create_archive('old_archive.pyz', 'new_archive.pyz', '/usr/bin/python3')
217217

218-
To update the file in place, do the replacement in memory using a :class:`BytesIO`
218+
To update the file in place, do the replacement in memory using a :class:`~io.BytesIO`
219219
object, and then overwrite the source afterwards. Note that there is a risk
220220
when overwriting a file in place that an error will result in the loss of
221221
the original file. This code does not protect against such errors, but

Doc/library/zipfile.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ ZipFile Objects
288288
(``ZipExtFile``) is read-only and provides the following methods:
289289
:meth:`~io.BufferedIOBase.read`, :meth:`~io.IOBase.readline`,
290290
:meth:`~io.IOBase.readlines`, :meth:`~io.IOBase.seek`,
291-
:meth:`~io.IOBase.tell`, :meth:`__iter__`, :meth:`~iterator.__next__`.
291+
:meth:`~io.IOBase.tell`, :meth:`~container.__iter__`, :meth:`~iterator.__next__`.
292292
These objects can operate independently of the ZipFile.
293293

294294
With ``mode='w'``, a writable file handle is returned, which supports the

Include/cpython/object.h

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
#endif
44

55
PyAPI_FUNC(void) _Py_NewReference(PyObject *op);
6+
PyAPI_FUNC(void) _Py_NewReferenceNoTotal(PyObject *op);
67

78
#ifdef Py_TRACE_REFS
89
/* Py_TRACE_REFS is such major surgery that we call external routines. */

Include/internal/pycore_object.h

+20-3
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,23 @@ PyAPI_FUNC(void) _Py_NO_RETURN _Py_FatalRefcountErrorFunc(
3737
#define _Py_FatalRefcountError(message) \
3838
_Py_FatalRefcountErrorFunc(__func__, (message))
3939

40+
41+
#ifdef Py_REF_DEBUG
42+
/* The symbol is only exposed in the API for the sake of extensions
43+
built against the pre-3.12 stable ABI. */
44+
PyAPI_DATA(Py_ssize_t) _Py_RefTotal;
45+
46+
extern void _Py_AddRefTotal(Py_ssize_t);
47+
extern void _Py_IncRefTotal(void);
48+
extern void _Py_DecRefTotal(void);
49+
# define _Py_DEC_REFTOTAL() _Py_RefTotal--
50+
#endif
51+
4052
// Increment reference count by n
4153
static inline void _Py_RefcntAdd(PyObject* op, Py_ssize_t n)
4254
{
4355
#ifdef Py_REF_DEBUG
44-
_Py_RefTotal += n;
56+
_Py_AddRefTotal(n);
4557
#endif
4658
op->ob_refcnt += n;
4759
}
@@ -52,7 +64,7 @@ _Py_DECREF_SPECIALIZED(PyObject *op, const destructor destruct)
5264
{
5365
_Py_DECREF_STAT_INC();
5466
#ifdef Py_REF_DEBUG
55-
_Py_RefTotal--;
67+
_Py_DEC_REFTOTAL();
5668
#endif
5769
if (--op->ob_refcnt != 0) {
5870
assert(op->ob_refcnt > 0);
@@ -70,7 +82,7 @@ _Py_DECREF_NO_DEALLOC(PyObject *op)
7082
{
7183
_Py_DECREF_STAT_INC();
7284
#ifdef Py_REF_DEBUG
73-
_Py_RefTotal--;
85+
_Py_DEC_REFTOTAL();
7486
#endif
7587
op->ob_refcnt--;
7688
#ifdef Py_DEBUG
@@ -80,6 +92,11 @@ _Py_DECREF_NO_DEALLOC(PyObject *op)
8092
#endif
8193
}
8294

95+
#ifdef Py_REF_DEBUG
96+
# undef _Py_DEC_REFTOTAL
97+
#endif
98+
99+
83100
PyAPI_FUNC(int) _PyType_CheckConsistency(PyTypeObject *type);
84101
PyAPI_FUNC(int) _PyDict_CheckConsistency(PyObject *mp, int check_content);
85102

Include/object.h

+21-4
Original file line numberDiff line numberDiff line change
@@ -490,7 +490,21 @@ you can count such references to the type object.)
490490
*/
491491

492492
#ifdef Py_REF_DEBUG
493-
PyAPI_DATA(Py_ssize_t) _Py_RefTotal;
493+
# if defined(Py_LIMITED_API) && Py_LIMITED_API+0 < 0x030A0000
494+
extern Py_ssize_t _Py_RefTotal;
495+
# define _Py_INC_REFTOTAL() _Py_RefTotal++
496+
# define _Py_DEC_REFTOTAL() _Py_RefTotal--
497+
# elif defined(Py_BUILD_CORE) && !defined(Py_BUILD_CORE_MODULE)
498+
extern void _Py_IncRefTotal(void);
499+
extern void _Py_DecRefTotal(void);
500+
# define _Py_INC_REFTOTAL() _Py_IncRefTotal()
501+
# define _Py_DEC_REFTOTAL() _Py_DecRefTotal()
502+
# elif !defined(Py_LIMITED_API) || Py_LIMITED_API+0 > 0x030C0000
503+
extern void _Py_IncRefTotal_DO_NOT_USE_THIS(void);
504+
extern void _Py_DecRefTotal_DO_NOT_USE_THIS(void);
505+
# define _Py_INC_REFTOTAL() _Py_IncRefTotal_DO_NOT_USE_THIS()
506+
# define _Py_DEC_REFTOTAL() _Py_DecRefTotal_DO_NOT_USE_THIS()
507+
# endif
494508
PyAPI_FUNC(void) _Py_NegativeRefcount(const char *filename, int lineno,
495509
PyObject *op);
496510
#endif /* Py_REF_DEBUG */
@@ -519,8 +533,8 @@ static inline void Py_INCREF(PyObject *op)
519533
// Non-limited C API and limited C API for Python 3.9 and older access
520534
// directly PyObject.ob_refcnt.
521535
#ifdef Py_REF_DEBUG
522-
_Py_RefTotal++;
523-
#endif
536+
_Py_INC_REFTOTAL();
537+
#endif // Py_REF_DEBUG
524538
op->ob_refcnt++;
525539
#endif
526540
}
@@ -539,7 +553,7 @@ static inline void Py_DECREF(PyObject *op) {
539553
static inline void Py_DECREF(const char *filename, int lineno, PyObject *op)
540554
{
541555
_Py_DECREF_STAT_INC();
542-
_Py_RefTotal--;
556+
_Py_DEC_REFTOTAL();
543557
if (--op->ob_refcnt != 0) {
544558
if (op->ob_refcnt < 0) {
545559
_Py_NegativeRefcount(filename, lineno, op);
@@ -564,6 +578,9 @@ static inline void Py_DECREF(PyObject *op)
564578
#define Py_DECREF(op) Py_DECREF(_PyObject_CAST(op))
565579
#endif
566580

581+
#undef _Py_INC_REFTOTAL
582+
#undef _Py_DEC_REFTOTAL
583+
567584

568585
/* Safely decref `op` and set `op` to NULL, especially useful in tp_clear
569586
* and tp_dealloc implementations.

Include/patchlevel.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
#define PY_MINOR_VERSION 12
2121
#define PY_MICRO_VERSION 0
2222
#define PY_RELEASE_LEVEL PY_RELEASE_LEVEL_ALPHA
23-
#define PY_RELEASE_SERIAL 5
23+
#define PY_RELEASE_SERIAL 6
2424

2525
/* Version as a string */
26-
#define PY_VERSION "3.12.0a5+"
26+
#define PY_VERSION "3.12.0a6+"
2727
/*--end constants--*/
2828

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

Lib/_pylong.py

-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212
tricky or non-obvious code is not worth it. For people looking for
1313
maximum performance, they should use something like gmpy2."""
1414

15-
import sys
1615
import re
1716
import decimal
1817

Lib/concurrent/futures/process.py

+2
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@
4949
from concurrent.futures import _base
5050
import queue
5151
import multiprocessing as mp
52+
# This import is required to load the multiprocessing.connection submodule
53+
# so that it can be accessed later as `mp.connection`
5254
import multiprocessing.connection
5355
from multiprocessing.queues import Queue
5456
import threading

Lib/dataclasses.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
import types
55
import inspect
66
import keyword
7-
import builtins
87
import functools
98
import itertools
109
import abc

Lib/email/__init__.py

-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
]
2626

2727

28-
2928
# Some convenience routines. Don't import Parser and Message as side-effects
3029
# of importing email since those cascadingly import most of the rest of the
3130
# email package.

Lib/email/base64mime.py

-4
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@
4545
MISC_LEN = 7
4646

4747

48-
4948
# Helpers
5049
def header_length(bytearray):
5150
"""Return the length of s when it is encoded with base64."""
@@ -57,7 +56,6 @@ def header_length(bytearray):
5756
return n
5857

5958

60-
6159
def header_encode(header_bytes, charset='iso-8859-1'):
6260
"""Encode a single header line with Base64 encoding in a given charset.
6361
@@ -72,7 +70,6 @@ def header_encode(header_bytes, charset='iso-8859-1'):
7270
return '=?%s?b?%s?=' % (charset, encoded)
7371

7472

75-
7673
def body_encode(s, maxlinelen=76, eol=NL):
7774
r"""Encode a string with base64.
7875
@@ -98,7 +95,6 @@ def body_encode(s, maxlinelen=76, eol=NL):
9895
return EMPTYSTRING.join(encvec)
9996

10097

101-
10298
def decode(string):
10399
"""Decode a raw base64 string, returning a bytes object.
104100

Lib/email/charset.py

-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@
1818
from email.encoders import encode_7or8bit
1919

2020

21-
2221
# Flags for types of header encodings
2322
QP = 1 # Quoted-Printable
2423
BASE64 = 2 # Base64
@@ -32,7 +31,6 @@
3231
EMPTYSTRING = ''
3332

3433

35-
3634
# Defaults
3735
CHARSETS = {
3836
# input header enc body enc output conv
@@ -104,7 +102,6 @@
104102
}
105103

106104

107-
108105
# Convenience functions for extending the above mappings
109106
def add_charset(charset, header_enc=None, body_enc=None, output_charset=None):
110107
"""Add character set properties to the global registry.
@@ -153,7 +150,6 @@ def add_codec(charset, codecname):
153150
CODEC_MAP[charset] = codecname
154151

155152

156-
157153
# Convenience function for encoding strings, taking into account
158154
# that they might be unknown-8bit (ie: have surrogate-escaped bytes)
159155
def _encode(string, codec):
@@ -163,7 +159,6 @@ def _encode(string, codec):
163159
return string.encode(codec)
164160

165161

166-
167162
class Charset:
168163
"""Map character sets to their email properties.
169164

Lib/email/encoders.py

-4
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616
from quopri import encodestring as _encodestring
1717

1818

19-
2019
def _qencode(s):
2120
enc = _encodestring(s, quotetabs=True)
2221
# Must encode spaces, which quopri.encodestring() doesn't do
@@ -34,7 +33,6 @@ def encode_base64(msg):
3433
msg['Content-Transfer-Encoding'] = 'base64'
3534

3635

37-
3836
def encode_quopri(msg):
3937
"""Encode the message's payload in quoted-printable.
4038
@@ -46,7 +44,6 @@ def encode_quopri(msg):
4644
msg['Content-Transfer-Encoding'] = 'quoted-printable'
4745

4846

49-
5047
def encode_7or8bit(msg):
5148
"""Set the Content-Transfer-Encoding header to 7bit or 8bit."""
5249
orig = msg.get_payload(decode=True)
@@ -64,6 +61,5 @@ def encode_7or8bit(msg):
6461
msg['Content-Transfer-Encoding'] = '7bit'
6562

6663

67-
6864
def encode_noop(msg):
6965
"""Do nothing."""

Lib/email/feedparser.py

-2
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
NeedMoreData = object()
4242

4343

44-
4544
class BufferedSubFile(object):
4645
"""A file-ish object that can have new data loaded into it.
4746
@@ -132,7 +131,6 @@ def __next__(self):
132131
return line
133132

134133

135-
136134
class FeedParser:
137135
"""A feed-style parser of email."""
138136

Lib/email/generator.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
fcre = re.compile(r'^From ', re.MULTILINE)
2323

2424

25-
2625
class Generator:
2726
"""Generates output from a Message object tree.
2827
@@ -392,7 +391,7 @@ def _make_boundary(cls, text=None):
392391
def _compile_re(cls, s, flags):
393392
return re.compile(s, flags)
394393

395-
394+
396395
class BytesGenerator(Generator):
397396
"""Generates a bytes version of a Message object tree.
398397
@@ -443,7 +442,6 @@ def _compile_re(cls, s, flags):
443442
return re.compile(s.encode('ascii'), flags)
444443

445444

446-
447445
_FMT = '[Non-text (%(type)s) part of message omitted, filename %(filename)s]'
448446

449447
class DecodedGenerator(Generator):
@@ -503,7 +501,6 @@ def _dispatch(self, msg):
503501
}, file=self)
504502

505503

506-
507504
# Helper used by Generator._make_boundary
508505
_width = len(repr(sys.maxsize-1))
509506
_fmt = '%%0%dd' % _width

0 commit comments

Comments
 (0)