Skip to content

gh-102029: Deprecate passing arguments to _PyRLock in threading #102071

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

Merged
merged 11 commits into from
Aug 17, 2023

Conversation

sobolevn
Copy link
Member

@sobolevn sobolevn commented Feb 20, 2023

I hope that this is not really a breaking change. Here's my reasoning:

  1. _PyRLock was the first one (since python2). People are familiar with it: and its signature was always correct
  2. Since passing values never made any sense, I hope nobody does rely on it
  3. Subclasses still work correctly, eventhough they are not really recommened (and RLock is exposed as a function)
  4. typeshed always had RLock defined as () -> RLock with no complains: https://github.com/python/typeshed/blob/40d853cbe239bcf1479e25c2c59615158b672610/stdlib/threading.pyi#L115-L122
  5. I was not able to find any references to RLock with arguments

As the next step, I will propose to deprecate the Python version.

@sobolevn sobolevn changed the title Sync __new__ sigs of _CRLock and _PyRLock in threading gh-102029: Sync __new__ sigs of _CRLock and _PyRLock in threading Feb 20, 2023
@sobolevn sobolevn requested a review from pablogsal February 20, 2023 12:46
@sobolevn
Copy link
Member Author

@pablogsal friendly ping :)

@gpshead gpshead self-requested a review May 29, 2023 00:12
Copy link
Member

@gpshead gpshead left a comment

Choose a reason for hiding this comment

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

This makes sense to me, but I want to run it through a huge pile of tests at work just to see what - if any - oddball code was relying on passing ignored values. I hope nothing. I'll do that this week.

@gpshead gpshead self-assigned this May 29, 2023
@sobolevn
Copy link
Member Author

Thank you! In the meantime, I will change the What's new entry.

@gpshead
Copy link
Member

gpshead commented May 30, 2023

note to self: I included this PR in an internal test run today, I'll have results by tonight/tomorrow.

@sobolevn
Copy link
Member Author

hypothesis failures are not related.

@gpshead
Copy link
Member

gpshead commented May 31, 2023

I found only a single instance of a parameter being passed to RLock via testing this change in our huge codebase at work:

threading.RLock(verbose=True)

That code was originally written for Python 2.7 which did support an undocumented verbose argument on threading.RLock. https://github.com/python/cpython/blob/v2.7.18/Lib/threading.py#L132

Easy to fix. But it does suggest that we should just do this API change via our usual DeprecationWarning cycle rather than just assuming we can make it without notice.


* Passing any arguments to :func:`threading.RLock` is now restricted.
Previously C version allowed any numbers of args and kwargs,
but they were just ignored. Python version never allowed any arguments.
Copy link
Member

Choose a reason for hiding this comment

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

This statement isn't accurate; Python <= 2.7 and 3.1 accepted a single undocumented verbose argument.

Lib/threading.py Outdated
@@ -107,7 +107,7 @@ def gettrace():

Lock = _allocate_lock

def RLock(*args, **kwargs):
def RLock():
Copy link
Member

@gpshead gpshead May 31, 2023

Choose a reason for hiding this comment

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

Lets do a regular DeprecationWarning API change cycle on this.

if args or kwargs:
    warnings.warn(DeprecationWarning, ...)

we can put that in 3.12 remove the ignored args/kwargs in 3.14.

Copy link
Member Author

Choose a reason for hiding this comment

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

I thought that 3.12 is now only accepting bugfixes, isn't it? I would prefer to have this change as safe as possible and to put it in 3.13+. Unless you insist :)

@bedevere-bot
Copy link

A Python core developer has requested some changes be made to your pull request before we can consider merging it. If you could please address their requests along with any other requests in other reviews from core developers that would be appreciated.

Once you have made the requested changes, please leave a comment on this pull request containing the phrase I have made the requested changes; please review again. I will then notify any core developers who have left a review that you're ready for them to take another look at this pull request.

And if you don't make the requested changes, you will be poked with soft cushions!

@sobolevn
Copy link
Member Author

sobolevn commented Jun 1, 2023

I have made the requested changes; please review again

@bedevere-bot
Copy link

Thanks for making the requested changes!

@gpshead: please review the changes made to this pull request.

@bedevere-bot bedevere-bot requested a review from gpshead June 1, 2023 07:34
@sobolevn sobolevn changed the title gh-102029: Sync __new__ sigs of _CRLock and _PyRLock in threading gh-102029: Deprecate passing arguments to _PyRLock in threading Aug 11, 2023
@sobolevn
Copy link
Member Author

@gpshead now this is deprecated in 3.13 and stated to be changed in 3.15 :)

@ambv
Copy link
Contributor

ambv commented Aug 11, 2023

Closing and re-opening to retrigger CLA checks. Sorry for the noise.

@ambv ambv closed this Aug 11, 2023
@ambv ambv reopened this Aug 11, 2023
@sobolevn
Copy link
Member Author

Thanks everyone! CI is now green :)

@sobolevn
Copy link
Member Author

Can someone please click "merge"? :)

@gpshead gpshead merged commit 80f30cf into python:main Aug 17, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

4 participants