Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove/update references to EOL Python versions #1227

Merged
merged 2 commits into from
Dec 8, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Maybe this sentence is useful since it's about legacy converters? @erlend-aasland?

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand this sentence. IIRC, legacy converters are just aliases for "normal" converters. I can take a closer look tomorrow. Ping me again if I take too long.

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@erlend-aasland ping :)

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm fine with removing this. AFAICS, it has no relevance anymore. If it causes great havoc, I'll take the blame :)


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 @@ -153,9 +153,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