From: Raymond Hettinger Date: Sun, 15 Dec 2013 19:56:14 +0000 (-0800) Subject: Minor code clean-up. Keep the C-API all in one section. X-Git-Tag: v3.4.0b2~211^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e259f138749fea616f79ad99088d1ee1fe4cca4b;p=python Minor code clean-up. Keep the C-API all in one section. --- diff --git a/Objects/setobject.c b/Objects/setobject.c index adc99da627..b0803f6b19 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c @@ -36,9 +36,6 @@ static PyObject _dummy_struct; #define dummy (&_dummy_struct) -/* Exported for the gdb plugin's benefit. */ -PyObject *_PySet_Dummy = dummy; - /* ======================================================================== */ /* ======= Begin logic for probing the hash table ========================= */ @@ -2345,6 +2342,9 @@ _PySet_Update(PyObject *set, PyObject *iterable) return set_update_internal((PySetObject *)set, iterable); } +/* Exported for the gdb plugin's benefit. */ +PyObject *_PySet_Dummy = dummy; + #ifdef Py_DEBUG /* Test code to be called with any three element set.