Skip to content

Commit 6b94c7c

Browse files
[3.14] pythongh-129559: Remove extra dot in bytearray.resize AC (pythonGH-140134) (python#140143)
Co-authored-by: Cody Maloney <[email protected]>
1 parent 9e235ff commit 6b94c7c

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

Objects/bytearrayobject.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1537,14 +1537,14 @@ bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix)
15371537
/*[clinic input]
15381538
bytearray.resize
15391539
size: Py_ssize_t
1540-
New size to resize to..
1540+
New size to resize to.
15411541
/
15421542
Resize the internal buffer of bytearray to len.
15431543
[clinic start generated code]*/
15441544

15451545
static PyObject *
15461546
bytearray_resize_impl(PyByteArrayObject *self, Py_ssize_t size)
1547-
/*[clinic end generated code: output=f73524922990b2d9 input=75fd4d17c4aa47d3]*/
1547+
/*[clinic end generated code: output=f73524922990b2d9 input=6c9a260ca7f72071]*/
15481548
{
15491549
Py_ssize_t start_size = PyByteArray_GET_SIZE(self);
15501550
int result = PyByteArray_Resize((PyObject *)self, size);

Objects/clinic/bytearrayobject.c.h

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)