Irit Katriel

Results 49 issues of Irit Katriel

In https://github.com/andfoy/pywinpty/blob/694ad0b498b23b3386d1e30296f82a734c014fe3/winpty/ptyprocess.py#L358 there is a `break` statement in a `finally` block, which would swallow any in-flight exception. This means that if any exception (including a `BaseException` such as `KeyboardInterrupt`) is...

In https://github.com/pytest-dev/pytest-random-order/blob/ac1369a174a6f4a2cca295e73c4c6b04c613888c/random_order/shuffler.py#L100 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if any exception (including `BaseException` such as `KeyboardInterrupt`) is raised...

[This return statement](https://github.com/PiotrDabkowski/Js2Py/blob/2e017b86e2f18a6c8a842293b1687f2ce7baa12e/examples/pyesprima.py#L2603) will swallow any in-flight exception. If the `try` block raises an exception which is not of type `PyJsException` (such as a `KeyboardInterrupt`), or the `except` block raises...

In https://github.com/fabioz/PyDev.Debugger/blob/7d6e6e68670277c63d7b8f64cb73688f963f0663/pydevd_attach_to_process/winappdbg/event.py#L1478 and https://github.com/fabioz/PyDev.Debugger/blob/7d6e6e68670277c63d7b8f64cb73688f963f0663/pydevd_attach_to_process/winappdbg/event.py#L1635 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if any exception (including `BaseException` such as `KeyboardInterrupt`)...

In https://github.com/jborean93/pypsrp/blob/d2a3eca257230e40354d39ca008639992f8495a4/src/psrp/_connection/wsman.py#L746 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. and https://github.com/jborean93/pypsrp/blob/d2a3eca257230e40354d39ca008639992f8495a4/src/psrp/_connection/wsman.py#L1110 This means that if a `BaseException` (such as `KeyboardInterrupt`) is raised...

In https://github.com/zalando-zmon/opentracing-utils/blob/0a4a2889aaa79efc7ca3bfbc57beccc0eec903ca/opentracing_utils/libs/_flask.py#L145 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if any exception (including a `BaseException` such as `KeyboardInterrupt`) is...

In https://github.com/optimizely/python-sdk/blob/40880ffad7403ef96c7b11b02a110fb42adf39c2/optimizely/config_manager.py#L153 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if any exception is raised from one of the `except:`...

In https://github.com/promplate/partial-json-parser/blob/265c965002c9afaa15a5429e03cb317071f7286e/src/partial_json_parser/core/complete.py#L32 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if any exception is raised from the `try` body (including...

bug

In https://github.com/xolox/python-humanfriendly/blob/6758ac61f906cd8528682003070a57febe4ad3cf/humanfriendly/testing.py#L542 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if the try block raises `AssertionError`, this will not be...

In https://github.com/oldani/HtmlTestRunner/blob/8529dc39c348411ed5177fe281f18a456680f803/HtmlTestRunner/result.py#L32 there is a `return` statement in a `finally` block, which would swallow any in-flight exception. This means that if a `BaseException` (such as `KeyboardInterrupt`) is raised from the...