Skip to content

Commit aefd1a6

Browse files
Apply suggestions from code review
Co-authored-by: mpage <mpage@cs.stanford.edu>
1 parent 8e8902a commit aefd1a6

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Objects/genobject.c

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2039,7 +2039,7 @@ async_gen_asend_send(PyObject *self, PyObject *arg)
20392039
arg = o->ags_sendval;
20402040
}
20412041

2042-
do_send:;
2042+
do_send:
20432043
PyObject *result = gen_send((PyObject*)o->ags_gen, arg);
20442044
result = async_gen_unwrap_value(o->ags_gen, result);
20452045

@@ -2100,7 +2100,7 @@ async_gen_asend_throw(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
21002100
return NULL;
21012101
}
21022102

2103-
do_throw:;
2103+
do_throw:
21042104
PyObject *result = gen_throw((PyObject*)o->ags_gen, args, nargs);
21052105
result = async_gen_unwrap_value(o->ags_gen, result);
21062106

@@ -2521,7 +2521,7 @@ async_gen_athrow_throw(PyObject *self, PyObject *const *args, Py_ssize_t nargs)
25212521
return NULL;
25222522
}
25232523

2524-
do_throw:;
2524+
do_throw:
25252525
PyObject *retval = gen_throw((PyObject*)o->agt_gen, args, nargs);
25262526
if (o->agt_typ) {
25272527
retval = async_gen_unwrap_value(o->agt_gen, retval);

0 commit comments

Comments
 (0)