Skip to main content
Advice
1 vote
3 replies
58 views

With PEP 649 in Python 3.14+ annotations are lazily evaluated by default, and this led me to wonder if it's acceptable to store type bounds or constraints in a global variable at the module level and ...
Rodrigo Torres's user avatar
1 vote
1 answer
324 views

I am trying to install Pygame on Python 3.14, but pip install pygame is failing. I've tried restarting the computer, installing the latest version of pip, and uninstalling and reinstalling Python. ...
KWincki's user avatar
  • 19
Advice
0 votes
2 replies
52 views

So for this ChatBot I'm making to get more used to Python, here's what I wanna do. I want to make it so that for a To-Do list, once you print it out and the bot asks "Anything else you'd like me ...
Pass The Mic's user avatar
2 votes
2 answers
126 views

I have two molecules, a peptide (16 aa) and a drug, which I loaded in the rdkit-env from the sequence and SMILES as follows. import os from rdkit import Chem from rdkit.Chem import AllChem aa_seq = &...
user32382356's user avatar
1 vote
0 answers
57 views

Any suggestions on fixing or debugging this? Windows 11, Eclipse 2025-12, Python 3.14.2, PyQt6 installed via pip, no virtual env, and a simple PyQt6 app. The import line in the app is: from PyQt6....
user14479798's user avatar
3 votes
1 answer
145 views

I am trying to setup an air-gapped VM (Win10) to build python wheels. It works for Python versions < 3.14. With Python 3.14 I can only build the package when I have access to the internet. Without ...
goaran's user avatar
  • 515
-1 votes
1 answer
484 views

I've installed miniconda, I've set-up an environment with Python 3.14.2, but I'm struggling to install Jupyter. Here's the code: Could not solve for environment specs The following packages are ...
Mehrab's user avatar
  • 19
3 votes
0 answers
146 views

I am currently testing my Windows API wrappers against Python 3.14 using PyCharm 2025.3.1. I have encountered a persistent inspection warning in the IDE that seems to misidentify my ctypes usage as a ...
phpjunkie's user avatar
  • 523
1 vote
1 answer
141 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
  • 267
Advice
0 votes
3 replies
44 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
143 views

I am using Python 3.14 on Windows 11. I have 2 frames (left and right) inside a top frame and a bottom frame as status bar. I want the left frame to be a square, giving the rest of the horizontal ...
Mike Duke's user avatar
  • 267
9 votes
2 answers
906 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,530
16 votes
2 answers
4k 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,174