Beep on WIndows 11

2023-11-11 Thread Rob Cliffe via Python-list
 Apologies if this is not a Python question. I  recently moved from a WIndows 10 laptop to a Windows 11 one. Although there is nothing wrong with the sound on the new machine (I can listen to podcasts and watch videos), I find that outputting "\a" to the console (aka stdout) no longer beeps (or

[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

SQLObject 3.11.0

2023-11-11 Thread Oleg Broytman via Python-list
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