commit | 7dfeb42939b36919d59943360e737389e1202c47 | [log] [tgz] |
---|---|---|
author | Barry Warsaw <barry@python.org> | Sun Jul 09 04:56:25 2000 +0000 |
committer | Barry Warsaw <barry@python.org> | Sun Jul 09 04:56:25 2000 +0000 |
tree | 747fb944597a7c89a7c1ff798d94d58764aff0b2 | |
parent | 4288c80599642880dd5710ccd2ce5d2c80696a81 [diff] |
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)