Skip to content

Commit c62f2c7

Browse files
committed
gh-129559: Remove extra . in bytearray.resize AC
1 parent c50d794 commit c62f2c7

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
@@ -1469,14 +1469,14 @@ bytearray_removesuffix_impl(PyByteArrayObject *self, Py_buffer *suffix)
14691469
/*[clinic input]
14701470
bytearray.resize
14711471
size: Py_ssize_t
1472-
New size to resize to..
1472+
New size to resize to.
14731473
/
14741474
Resize the internal buffer of bytearray to len.
14751475
[clinic start generated code]*/
14761476

14771477
static PyObject *
14781478
bytearray_resize_impl(PyByteArrayObject *self, Py_ssize_t size)
1479-
/*[clinic end generated code: output=f73524922990b2d9 input=75fd4d17c4aa47d3]*/
1479+
/*[clinic end generated code: output=f73524922990b2d9 input=6c9a260ca7f72071]*/
14801480
{
14811481
Py_ssize_t start_size = PyByteArray_GET_SIZE(self);
14821482
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)