File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -1216,7 +1216,7 @@ merge_consts_recursive(struct compiler *c, PyObject *o)
1216
1216
}
1217
1217
1218
1218
// We registered o in c_const_cache.
1219
- // When o is a tuple or frozenset, we want to merge it's
1219
+ // When o is a tuple or frozenset, we want to merge its
1220
1220
// items too.
1221
1221
if (PyTuple_CheckExact (o )) {
1222
1222
Py_ssize_t len = PyTuple_GET_SIZE (o );
@@ -1246,7 +1246,7 @@ merge_consts_recursive(struct compiler *c, PyObject *o)
1246
1246
}
1247
1247
}
1248
1248
else if (PyFrozenSet_CheckExact (o )) {
1249
- // *key* is tuple. And it's first item is frozenset of
1249
+ // *key* is tuple. And its first item is frozenset of
1250
1250
// constant keys.
1251
1251
// See _PyCode_ConstantKey() for detail.
1252
1252
assert (PyTuple_CheckExact (key ));
You can’t perform that action at this time.
0 commit comments