Skip to content

Commit 8311052

Browse files
committed
Address code review
1 parent dd616b4 commit 8311052

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
Update specialzier to support frozendict with BINARY_SUBSCR. Patch by
1+
Update specializer to support frozendict with BINARY_SUBSCR. Patch by
22
Donghee Na.

Objects/dictobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1321,7 +1321,7 @@ _Py_dict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **valu
13211321
return dict_lookup_impl(mp, key, hash, value_addr);
13221322
}
13231323

1324-
Py_ssize_t
1324+
static Py_ssize_t
13251325
_Py_frozendict_lookup(PyDictObject *mp, PyObject *key, Py_hash_t hash, PyObject **value_addr)
13261326
{
13271327
return dict_lookup_impl(mp, key, hash, value_addr);

0 commit comments

Comments
 (0)