[Python-announce] Late 1.0.0 - late bound arguments

2023-11-11 Thread Juancarlo AƱez
*Late* provides decorators and functions to work around the issues that early binding of default argument values produces in Python. @latebinding def f(x: list[Any] = __([])) -> list[Any]: x.append(1) return x assert f() == [1] assert f() == [1] assert f() == [

[Python-announce] SQLObject 3.11.0

2023-11-11 Thread Oleg Broytman
Hello! I'm pleased to announce version 3.11.0, the first stable release of branch 3.11 of SQLObject. What's new in SQLObject === Features * Continue working on ``SQLRelatedJoin`` aliasing introduced in 3.10.2. When a table joins with itself calling ``relJoinCol