Skip to content

v0.15.5

Latest

Choose a tag to compare

@stephanlensky stephanlensky released this 15 Jul 22:00
· 1 commit to main since this release

Fixed

  • Fix SyntaxError on Python 3.14 in Connection._register_handlers. PEP 765 makes continue/break/return that exits a finally block a SyntaxError (was a SyntaxWarning in 3.13), so zendriver/core/connection.py failed to import under 3.14. Removed the no-op finally: continue (the loop already falls through to the next iteration, and the enclosing bare except: catches everything, so nothing changed behaviorally). Fixes #252