commit | 5e872de6c70a60af80a45f7929c1f30e0886648a | [log] [tgz] |
---|---|---|
author | Fred Drake <fdrake@acm.org> | Mon Apr 10 18:24:26 2000 +0000 |
committer | Fred Drake <fdrake@acm.org> | Mon Apr 10 18:24:26 2000 +0000 |
tree | 3efbd94537a5f8355cdd0343acfb01c7d32fad3c | |
parent | 729eca1b9d6a18665da8f0f8d89c4f1ed972f371 [diff] [blame] |
If the refcount field is "null", that's ok; the value will be None.
diff --git a/Doc/tools/refcounts.py b/Doc/tools/refcounts.py index 6056328..90f47d0 100644 --- a/Doc/tools/refcounts.py +++ b/Doc/tools/refcounts.py
@@ -33,7 +33,9 @@ continue parts = string.split(line, ":", 4) function, type, arg, refcount, comment = parts - if refcount: + if refcount == "null": + refcount = None + elif refcount: refcount = int(refcount) else: refcount = None