[Python-checkins] cpython (3.2): Issue #17034: Use Py_CLEAR() in bytesobject.c.

serhiy.storchaka python-checkins at python.org
Sat Feb 2 17:48:24 CET 2013


http://hg.python.org/cpython/rev/8a747dec89c5
changeset:   81934:8a747dec89c5
branch:      3.2
parent:      81925:ede0f27988f2
user:        Serhiy Storchaka <storchaka at gmail.com>
date:        Sat Feb 02 18:45:22 2013 +0200
summary:
  Issue #17034: Use Py_CLEAR() in bytesobject.c.

files:
  Objects/bytesobject.c |  12 ++++--------
  1 files changed, 4 insertions(+), 8 deletions(-)


diff --git a/Objects/bytesobject.c b/Objects/bytesobject.c
--- a/Objects/bytesobject.c
+++ b/Objects/bytesobject.c
@@ -2800,8 +2800,7 @@
     if (*pv == NULL)
         return;
     if (w == NULL) {
-        Py_DECREF(*pv);
-        *pv = NULL;
+        Py_CLEAR(*pv);
         return;
     }
     v = bytes_concat(*pv, w);
@@ -3008,12 +3007,9 @@
 PyBytes_Fini(void)
 {
     int i;
-    for (i = 0; i < UCHAR_MAX + 1; i++) {
-        Py_XDECREF(characters[i]);
-        characters[i] = NULL;
-    }
-    Py_XDECREF(nullstring);
-    nullstring = NULL;
+    for (i = 0; i < UCHAR_MAX + 1; i++)
+        Py_CLEAR(characters[i]);
+    Py_CLEAR(nullstring);
 }
 
 /*********************** Bytes Iterator ****************************/

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list