You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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