]> granicus.if.org Git - python/commitdiff
Minor code clean-up. Keep the C-API all in one section.
authorRaymond Hettinger <python@rcn.com>
Sun, 15 Dec 2013 19:56:14 +0000 (11:56 -0800)
committerRaymond Hettinger <python@rcn.com>
Sun, 15 Dec 2013 19:56:14 +0000 (11:56 -0800)
Objects/setobject.c

index adc99da62765d11b4c8d3fe338467fe12e7499bd..b0803f6b198d3a9f4b4b6bcf5ac586c25165f418 100644 (file)
@@ -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.