Skip to content

Commit bb69125

Browse files
authored
Remove/update references to EOL Python versions (#1227)
1 parent 53452a7 commit bb69125

File tree

4 files changed

+3
-9
lines changed

4 files changed

+3
-9
lines changed

development-tools/clinic.rst

+1-2
Original file line numberDiff line numberDiff line change
@@ -834,8 +834,7 @@ To save time, and to minimize how much you need to learn
834834
to achieve your first port to Argument Clinic, the walkthrough above tells
835835
you to use "legacy converters". "Legacy converters" are a convenience,
836836
designed explicitly to make porting existing code to Argument Clinic
837-
easier. And to be clear, their use is acceptable when porting code for
838-
Python 3.4.
837+
easier.
839838

840839
However, in the long term we probably want all our blocks to
841840
use Argument Clinic's real syntax for converters. Why? A couple

development-tools/gdb.rst

-2
Original file line numberDiff line numberDiff line change
@@ -297,8 +297,6 @@ thread is doing at the Python level::
297297
#8 Frame 0x7fffd00024a0, for file /home/david/coding/python-svn/Lib/test/lock_tests.py, line 378, in _check_notify (self=<ConditionTests(_testMethodName='test_notify', _resultForDoCleanups=<TestResult(_original_stdout=<cStringIO.StringO at remote 0xc191e0>, skipped=[], _mirrorOutput=False, testsRun=39, buffer=False, _original_stderr=<file at remote 0x7ffff7fc6340>, _stdout_buffer=<cStringIO.StringO at remote 0xc9c7f8>, _stderr_buffer=<cStringIO.StringO at remote 0xc9c790>, _moduleSetUpFailed=False, expectedFailures=[], errors=[], _previousTestClass=<type at remote 0x928310>, unexpectedSuccesses=[], failures=[], shouldStop=False, failfast=False) at remote 0xc185a0>, _threads=(0,), _cleanups=[], _type_equality_funcs={<type at remote 0x7eba00>: <instancemethod at remote 0xd750e0>, <type at remote 0x7e7820>: <instancemethod at remote 0xd75160>, <type at remote 0x7e30e0>: <instancemethod at remote 0xd75060>, <type at remote 0x7e7d20>: <instancemethod at remote 0xd751e0>, <type at remote 0x7f19e0...(truncated)
298298
_wait()
299299

300-
.. note:: This is only available for Python 2.7, 3.2 and higher.
301-
302300

303301
GDB 6 and earlier
304302
=================

getting-started/git-boot-camp.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -163,9 +163,9 @@ To switch to a different branch::
163163
$ git switch <another-branch-name>
164164

165165
Other releases are just branches in the repository. For example, to work
166-
on the 2.7 release from the ``upstream`` remote::
166+
on the 3.12 release from the ``upstream`` remote::
167167

168-
$ git switch -c 2.7 upstream/2.7
168+
$ git switch -c 3.12 upstream/3.12
169169

170170
.. _deleting_branches:
171171

testing/run-write-tests.rst

-3
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,6 @@ using several Python processes so as to speed up things:
166166
167167
.\python.bat -m test -j0
168168
169-
If you are running a version of Python prior to 3.3 you must specify the number
170-
of processes to run simultaneously (e.g. ``-j2``).
171-
172169
.. _strenuous_testing:
173170

174171
Finally, if you want to run tests under a more strenuous set of settings, you

0 commit comments

Comments
 (0)