Skip to content

Commit 50eb52d

Browse files
Fix errors.
1 parent b7196ba commit 50eb52d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Doc/whatsnew/3.15.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -435,14 +435,14 @@ base64
435435
(Contributed by Hauke D in :gh:`143103`.)
436436

437437
* Added the *wrapcol* parameter in :func:`~base64.b64encode`.
438-
(Contributed by Serhiy Storchaka in :gh:``.)
438+
(Contributed by Serhiy Storchaka in :gh:`143214`.)
439439

440440

441441
binascii
442442
--------
443443

444444
* Added the *wrapcol* parameter in :func:`~binascii.b2a_base64`.
445-
(Contributed by Serhiy Storchaka in :gh:``.)
445+
(Contributed by Serhiy Storchaka in :gh:`143214`.)
446446

447447

448448
calendar

Modules/binascii.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -615,7 +615,7 @@ binascii_b2a_base64_impl(PyObject *module, Py_buffer *data, size_t wrapcol,
615615

616616
return PyBytesWriter_FinishWithPointer(writer, ascii_data);
617617

618-
toolong:
618+
toolong:;
619619
binascii_state *state = get_binascii_state(module);
620620
if (state == NULL) {
621621
return NULL;

0 commit comments

Comments
 (0)