Skip to main content
Filter by
Sorted by
Tagged with
1 vote
1 answer
82 views

I am struggling with some key bindings in Tkinter. In my application, to avoid having to make each widget get the focus prior to having the opportunity of capturing KeyPress events, I decided to use ...
Mike Duke's user avatar
  • 235
Advice
0 votes
3 replies
43 views

Basically I want to split the template string by literal whitespace (we don't have to worry about escape chars for these purposes) and produce an array of strings, where bracketed arguments with space ...
meisel's user avatar
  • 2,625
1 vote
3 answers
115 views

I am using Python 3.14 on Windows 11. I have 2 frames (left and right) inside a top Frame, and there is also a bottom Frame that will act as a status bar. I want the left frame to be a square, giving ...
Mike Duke's user avatar
  • 235
8 votes
2 answers
455 views

The following code works fine on Python 3.13, but fails on Python 3.14 with a RuntimeError related to asyncio tasks. If I switch the multiprocessing start method from "fork" to "spawn&...
DarkMath's user avatar
  • 1,520
14 votes
2 answers
3k views

Python 3.14 is introducing template strings, so-called t-strings. Can someone explain how these differ from f-strings? What new problems are t-strings helping developers solve?
firebush's user avatar
  • 6,124