We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e10766 commit 63b5fc5Copy full SHA for 63b5fc5
1 file changed
Python/compile.c
@@ -1216,7 +1216,7 @@ merge_consts_recursive(struct compiler *c, PyObject *o)
1216
}
1217
1218
// We registered o in c_const_cache.
1219
- // When o is a tuple or frozenset, we want to merge it's
+ // When o is a tuple or frozenset, we want to merge its
1220
// items too.
1221
if (PyTuple_CheckExact(o)) {
1222
Py_ssize_t len = PyTuple_GET_SIZE(o);
@@ -1246,7 +1246,7 @@ merge_consts_recursive(struct compiler *c, PyObject *o)
1246
1247
1248
else if (PyFrozenSet_CheckExact(o)) {
1249
- // *key* is tuple. And it's first item is frozenset of
+ // *key* is tuple. And its first item is frozenset of
1250
// constant keys.
1251
// See _PyCode_ConstantKey() for detail.
1252
assert(PyTuple_CheckExact(key));
0 commit comments