10000 gh-92536: PEP 623: Remove wstr from unicode by methane · Pull Request #92537 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-92536: PEP 623: Remove wstr from unicode #92537

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 21 commits into from
May 12, 2022
Merged
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
Prev Previous commit
Next Next commit
Remove PyUnicode_GetSize from public header.
  • Loading branch information
methane committed May 11, 2022
commit 3ebaf93d4b04bea7d3cef326fb3c655eef0936e5
7 changes: 0 additions & 7 deletions Include/unicodeobject.h
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,6 @@ PyAPI_FUNC(Py_ssize_t) PyUnicode_GetLength(
);
#endif

/* Get the number of Py_UNICODE units in the
string representation. */

Py_DEPRECATED(3.3) PyAPI_FUNC(Py_ssize_t) PyUnicode_GetSize(
PyObject *unicode /* Unicode object */
);

#if !defined(Py_LIMITED_API) || Py_LIMITED_API+0 >= 0x03030000
/* Read a character from the string. */

Expand Down
0