Skip to content

Commit

Permalink
Remove/update references to EOL Python versions (#1227)
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk committed Dec 8, 2023
1 parent 53452a7 commit bb69125
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 9 deletions.
3 changes: 1 addition & 2 deletions development-tools/clinic.rst
Original file line number Diff line number Diff line change
Expand Up @@ -834,8 +834,7 @@ To save time, and to minimize how much you need to learn
to achieve your first port to Argument Clinic, the walkthrough above tells
you to use "legacy converters". "Legacy converters" are a convenience,
designed explicitly to make porting existing code to Argument Clinic
easier. And to be clear, their use is acceptable when porting code for
Python 3.4.
easier.

However, in the long term we probably want all our blocks to
use Argument Clinic's real syntax for converters. Why? A couple
Expand Down
2 changes: 0 additions & 2 deletions development-tools/gdb.rst
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,6 @@ thread is doing at the Python level::
#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)
_wait()

.. note:: This is only available for Python 2.7, 3.2 and higher.


GDB 6 and earlier
=================
Expand Down
4 changes: 2 additions & 2 deletions getting-started/git-boot-camp.rst
Original file line number Diff line number Diff line change
Expand Up @@ -163,9 +163,9 @@ To switch to a different branch::
$ git switch <another-branch-name>

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

$ git switch -c 2.7 upstream/2.7
$ git switch -c 3.12 upstream/3.12

.. _deleting_branches:

Expand Down
3 changes: 0 additions & 3 deletions testing/run-write-tests.rst
Original file line number Diff line number Diff line change
Expand Up @@ -166,9 +166,6 @@ using several Python processes so as to speed up things:
.\python.bat -m test -j0
If you are running a version of Python prior to 3.3 you must specify the number
of processes to run simultaneously (e.g. ``-j2``).

.. _strenuous_testing:

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

0 comments on commit bb69125

Please sign in to comment.