diff options
author | Christian Heimes <christian@cheimes.de> | 2008-01-30 17:21:22 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2008-01-30 17:21:22 (GMT) |
commit | 0d9244332b4c9dad8722f7ed651fb922de93afe6 (patch) | |
tree | 8b4c329ff0ff2b69483b60639296d301368b5fa5 /Objects/floatobject.c | |
parent | 67ac0667f0b74cc98f5cc4d23b39e9574154ec01 (diff) | |
download | cpython-0d9244332b4c9dad8722f7ed651fb922de93afe6.zip cpython-0d9244332b4c9dad8722f7ed651fb922de93afe6.tar.gz cpython-0d9244332b4c9dad8722f7ed651fb922de93afe6.tar.bz2 |
Fixed some references leaks in sys.
Diffstat (limited to 'Objects/floatobject.c')
-rw-r--r-- | Objects/floatobject.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Objects/floatobject.c b/Objects/floatobject.c index 3d70e3a..689edcd 100644 --- a/Objects/floatobject.c +++ b/Objects/floatobject.c @@ -143,7 +143,6 @@ PyFloat_GetInfo(void) return NULL; } - Py_INCREF(floatinfo); return floatinfo; } |