]> granicus.if.org Git - python/commit
EnvironmentError__init__(): The two case clauses were missing
authorBarry Warsaw <barry@python.org>
Sun, 9 Jul 2000 04:56:25 +0000 (04:56 +0000)
committerBarry Warsaw <barry@python.org>
Sun, 9 Jul 2000 04:56:25 +0000 (04:56 +0000)
commit7dfeb42939b36919d59943360e737389e1202c47
tree747fb944597a7c89a7c1ff798d94d58764aff0b2
parent4288c80599642880dd5710ccd2ce5d2c80696a81
EnvironmentError__init__(): The two case clauses were missing
`break's.  This first missing break caused a memory leak when case 3
fell through case 2 in the following example:

import os
os.chmod('/missing', 0600)
Python/exceptions.c