summaryrefslogtreecommitdiffstats
path: root/Python/formatter_unicode.c
diff options
context:
space:
mode:
authorSergey Miryanov <sergey.miryanov@gmail.com>2025-03-03 19:18:09 (GMT)
committerGitHub <noreply@github.com>2025-03-03 19:18:09 (GMT)
commit3a7f17c7e2f72a836a019c316818c446a0c71d75 (patch)
tree195d97d31dc8c6d06088f4a01c9835cc9f0bdf93 /Python/formatter_unicode.c
parent8a64a62002fa3cdc93cb4cfee315edb235cad8cb (diff)
downloadcpython-3a7f17c7e2f72a836a019c316818c446a0c71d75.zip
cpython-3a7f17c7e2f72a836a019c316818c446a0c71d75.tar.gz
cpython-3a7f17c7e2f72a836a019c316818c446a0c71d75.tar.bz2
gh-130790: Remove references about unicode's readiness from comments (#130801)
Diffstat (limited to 'Python/formatter_unicode.c')
-rw-r--r--Python/formatter_unicode.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/formatter_unicode.c b/Python/formatter_unicode.c
index 4f8662b..6e3dcb3 100644
--- a/Python/formatter_unicode.c
+++ b/Python/formatter_unicode.c
@@ -867,7 +867,6 @@ format_string_internal(PyObject *value, const InternalFormatSpec *format,
int result = -1;
Py_UCS4 maxchar;
- assert(PyUnicode_IS_READY(value));
len = PyUnicode_GET_LENGTH(value);
/* sign is not allowed on strings */