summaryrefslogtreecommitdiff
path: root/Python/import.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-01-30 17:21:22 +0000
committerChristian Heimes <christian@cheimes.de>2008-01-30 17:21:22 +0000
commit0d9244332b4c9dad8722f7ed651fb922de93afe6 (patch)
tree8b4c329ff0ff2b69483b60639296d301368b5fa5 /Python/import.c
parent67ac0667f0b74cc98f5cc4d23b39e9574154ec01 (diff)
downloadcpython-git-0d9244332b4c9dad8722f7ed651fb922de93afe6.tar.gz
Fixed some references leaks in sys.
Diffstat (limited to 'Python/import.c')
-rw-r--r--Python/import.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/Python/import.c b/Python/import.c
index 71ec20a252..0b0d81068d 100644
--- a/Python/import.c
+++ b/Python/import.c
@@ -370,6 +370,8 @@ static char* sys_deletes[] = {
"exc_type", "exc_value", "exc_traceback",
"last_type", "last_value", "last_traceback",
"path_hooks", "path_importer_cache", "meta_path",
+ /* misc stuff */
+ "flags", "float_info",
NULL
};