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

gh-128863: Deprecate the private _PyUnicodeWriter API #129245

Merged
merged 11 commits into from
Feb 20, 2025

Conversation

vstinner
Copy link
Member

@vstinner vstinner commented Jan 23, 2025

Deprecate private C API functions:

  • _PyUnicodeWriter_Init()
  • _PyUnicodeWriter_Finish()
  • _PyUnicodeWriter_Dealloc()
  • _PyUnicodeWriter_WriteChar()
  • _PyUnicodeWriter_WriteStr()
  • _PyUnicodeWriter_WriteSubstring()
  • _PyUnicodeWriter_WriteASCIIString()
  • _PyUnicodeWriter_WriteLatin1String()

These functions are not deprecated in the internal C API (if the Py_BUILD_CORE macro is defined).


📚 Documentation preview 📚: https://cpython-previews--129245.org.readthedocs.build/

Deprecate private C API functions:

* _PyUnicodeWriter_Init()
* _PyUnicodeWriter_Finish()
* _PyUnicodeWriter_Dealloc()
* _PyUnicodeWriter_WriteChar()
* _PyUnicodeWriter_WriteStr()
* _PyUnicodeWriter_WriteSubstring()
* _PyUnicodeWriter_WriteASCIIString()
* _PyUnicodeWriter_WriteLatin1String()

These functions are not deprecated in the internal C API (if the
Py_BUILD_CORE macro is defined).
@vstinner
Copy link
Member Author

cc @serhiy-storchaka

@vstinner
Copy link
Member Author

cc @erlend-aasland

Copy link
Member

@serhiy-storchaka serhiy-storchaka left a comment

Choose a reason for hiding this comment

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

LGTM.

I expected a large PR that replaces the _PyUnicodeWriter API with the PyUnicodeWriter API.

@vstinner
Copy link
Member Author

@encukou: The replacement functions are straightforward, except for _PyUnicodeWriter_Init() which requires to pass an argument to PyUnicodeWriter_Create(). I documented the replacement as PyUnicodeWriter_Create(0).

Copy link
Member

@encukou encukou left a comment

Choose a reason for hiding this comment

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

I do not see the benefit of removing these.

@bedevere-app
Copy link

bedevere-app bot commented Jan 28, 2025

When you're done making the requested changes, leave the comment: I have made the requested changes; please review again.

@vstinner
Copy link
Member Author

I do not see the benefit of removing these.

The private _PyUnicodeWriter API has low-level funtions such as _PyUnicodeWriter_Prepare(writer, length, maxchar) and _PyUnicodeWriter_PrepareKind(writer, kind) which are specific to PEP 393 internals. I would like to get rid of these to get more freedom on how the public PyUnicodeWriter API is implemented (since it's currently implemented on top of the private API).

The private API has no documentation and is not tested. Removing it reduces the size of the C API.

It's also a way to promote the public C API which doesn't expose PEP 393 internals.

@encukou
Copy link
Member

encukou commented Jan 28, 2025

Do you think it'd be a good idea to mention the reasons in the porting notes? If people see the reason, maybe the issues they file will be less angry.

I would like to get rid of these to get more freedom on how the public PyUnicodeWriter API is implemented (since it's currently implemented on top of the private API).

If that's the reason, is planning to remove them in 3.18 a good idea?
If old private API actually blocks current development, we should be able to remove it immediately (in the version where it's blocking something).

@vstinner
Copy link
Member Author

Do you think it'd be a good idea to mention the reasons in the porting notes? If people see the reason, maybe the issues they file will be less angry.

We don't document rationale for deprecations in the documentation. I don't think that it's worth it.

If that's the reason, is planning to remove them in 3.18 a good idea? If old private API actually blocks current development, we should be able to remove it immediately (in the version where it's blocking something).

Changing PyUnicodeWriter implementation would be nice, but I don't think that it should urge to remove the private API right now, it can wait.

@encukou
Copy link
Member

encukou commented Jan 29, 2025

Changing PyUnicodeWriter implementation would be nice, but I don't think that it should urge to remove the private API right now, it can wait.

Why can't the deprecation/removal also wait?

@vstinner
Copy link
Member Author

Why can't the deprecation/removal also wait?

If the function is never deprecated, it will only postpone when the private C API can be modified/enhanced.

@erlend-aasland
Copy link
Contributor

I do not see the benefit of removing these.

It's a deprecation, not a removal.

@encukou
Copy link
Member

encukou commented Feb 4, 2025

It's a deprecation, not a removal.

This PR schedules a removal for 3.18.
I don't think that helps the goal here (as far as I understand the goal). I commented at https://discuss.python.org/t/68081/15 .

@vstinner
Copy link
Member Author

vstinner commented Feb 5, 2025

I created a C API Working Group decision issue for this change: capi-workgroup/decisions#57

@vstinner
Copy link
Member Author

I created a C API Working Group decision issue for this change: capi-workgroup/decisions#57

The working group decided to deprecate the API and remove it in Python 3.18.

@vstinner vstinner dismissed encukou’s stale review February 19, 2025 13:44

Petr wrote "Count me as -0 so I don't block the work" on the working group issue.

@vstinner vstinner merged commit 519c2c6 into python:main Feb 20, 2025
42 checks passed
@vstinner vstinner deleted the deprecate_writer branch February 20, 2025 13:02
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