]> granicus.if.org Git - python/commit
Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong
authorGuido van Rossum <guido@python.org>
Mon, 21 Feb 2000 16:50:31 +0000 (16:50 +0000)
committerGuido van Rossum <guido@python.org>
Mon, 21 Feb 2000 16:50:31 +0000 (16:50 +0000)
commit584b16a1f340b086526773ec3275589468ae4b04
treec0801004432bbf1e88d9a3293c5f32dbbf718519
parent957d07a159b2ec68a1aec9ad8cb1ffbd3c43ba63
Mark pointed out a buglet in his patch: i < _sys_nerr isn't strong
enough, it could be negative.  Add i > 0 test.  (Not i >= 0; zero isn't
a valid error number.)
Python/errors.c