Skip to content

Commit 08d14d0

Browse files
committed
Fix whitespace after merge
1 parent 3876bc7 commit 08d14d0

File tree

4 files changed

+1
-3
lines changed

4 files changed

+1
-3
lines changed

Include/internal/pycore_dict.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,6 @@ extern Py_ssize_t _Py_dict_lookup_threadsafe(PyDictObject *mp, PyObject *key, Py
113113
extern Py_ssize_t _Py_dict_lookup_threadsafe_stackref(PyDictObject *mp, PyObject *key, Py_hash_t hash, _PyStackRef *value_addr);
114114

115115
extern Py_ssize_t _PyDict_LookupIndex(PyDictObject *, PyObject *);
116-
117116
extern Py_ssize_t _PyDictKeys_StringLookup(PyDictKeysObject* dictkeys, PyObject *key);
118117

119118
/* Look up a string key in an all unicode dict keys, assign the keys object a version, and

Lib/test/test_opcache.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -808,7 +808,6 @@ def write(items):
808808
pass
809809
type(item).__getattribute__ = lambda self, name: None
810810

811-
812811
opname = "LOAD_ATTR_GETATTRIBUTE_OVERRIDDEN"
813812
self.assert_races_do_not_crash(opname, get_items, read, write)
814813

Python/bytecodes.c

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2275,7 +2275,6 @@ dummy_func(
22752275
attr = PyStackRef_FromPyObjectNew(attr_o);
22762276
#endif
22772277
STAT_INC(LOAD_ATTR, hit);
2278-
22792278
null = PyStackRef_NULL;
22802279
DECREF_INPUTS();
22812280
}

Python/specialize.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1022,6 +1022,7 @@ specialize_dict_access_hint(
10221022
return 1;
10231023
}
10241024

1025+
10251026
static int
10261027
specialize_dict_access(
10271028
PyObject *owner, _Py_CODEUNIT *instr, PyTypeObject *type,

0 commit comments

Comments
 (0)