Skip to content

Commit 6c3041f

Browse files
committed
Fix formatting
1 parent 9673f78 commit 6c3041f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Objects/dictobject.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,8 @@ dictkeys_generic_lookup(PyDictObject *mp, PyDictKeysObject* dk, PyObject *key, P
11301130
}
11311131

11321132
static Py_hash_t
1133-
check_keys_and_hash(PyDictKeysObject *dk, PyObject *key) {
1133+
check_keys_and_hash(PyDictKeysObject *dk, PyObject *key)
1134+
{
11341135
DictKeysKind kind = dk->dk_kind;
11351136
if (!PyUnicode_CheckExact(key) || kind == DICT_KEYS_GENERAL) {
11361137
return -1;
@@ -1192,7 +1193,7 @@ _PyDictKeys_StringLookup(PyDictKeysObject* dk, PyObject *key)
11921193
}
11931194

11941195
Py_ssize_t
1195-
_PyDictKeys_StringLookupAndVersion(PyDictKeysObject* dk, PyObject *key, uint32_t *version)
1196+
_PyDictKeys_StringLookupAndVersion(PyDictKeysObject *dk, PyObject *key, uint32_t *version)
11961197
{
11971198
Py_hash_t hash = check_keys_and_hash(dk, key);
11981199
if (hash == -1) {

0 commit comments

Comments
 (0)