python / python/cpython

Strange 3.14.0a1 problem in attribute assignment

Aperta
#125,968 9 commenti 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

type-bug
Lingua principale
Python
Stelle
77.2k
Fork
35.9k
Metriche di merge delle PR
Metriche PR in attesa

Descrizione

Bug report

Bug description:
		# bold, italic
		_ = tt2ps(frag.fontName,frag.bold,frag.italic)
		if _=='helvetica': breakpoint()
		frag.fontName = _
		if frag.fontName=='helvetica': breakpoint()

the code above breaks at the second breakpoint. The value of _ is 'Helvetica', but the attribute value is 'helvetica' (the original value). It's not clear if the assignment is carried out or somehow transformed to lower case. The frag class is ParaFrag(ABag): pass with ABag defined as

class ABag:
	"""
	'Attribute Bag' - a trivial BAG class for holding attributes.

	This predates modern Python.  Doing this again, we'd use a subclass
	of dict.

	You may initialize with keyword arguments.
	a = ABag(k0=v0,....,kx=vx,....) ==> getattr(a,'kx')==vx

	c = a.clone(ak0=av0,.....) copy with optional additional attributes.
	"""
	def __init__(self,**attr):
		self.__dict__.update(attr)

	def clone(self,**attr):
		n = self.__class__(**self.__dict__)
		if attr: n.__dict__.update(attr)
		return n

	def __repr__(self):
		D = self.__dict__
		K = list(D.keys())
		K.sort()
		return '%s(%s)' % (self.__class__.__name__,', '.join(['%s=%r' % (k,D[k]) for k in K]))

the _ intermediate variable is not actually used in the original code, but the original and this code works as expected in python 3.9-3.13.

Original code is https://hg.reportlab.com/hg-public/reportlab/file/tip/src/reportlab/platypus/paraparser.py (line 3131) and https://hg.reportlab.com/hg-public/reportlab/file/tip/src/reportlab/lib/abag.py

CPython versions tested on:

3.14

Operating systems tested on:

Linux

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Direzione di ricerca

Inizia riproducendo il comportamento segnalato con Python 3.14 e con una versione precedente, usando src/reportlab/platypus/paraparser.py di reportlab intorno alla riga 3131 e src/reportlab/lib/abag.py. Confronta il comportamento dell'assegnazione degli attributi e determina se la segnalazione documenta una regressione di CPython; il lavoro è concluso quando la causa è stata identificata e una risoluzione appropriata è stata registrata o implementata.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Valutazione

Stack tecnologico
python
Ambito
backend
Tipo di issue
Bug
Difficoltà
4/5
Tempo stimato
3-5 giorni
Stato di attività
Ferma
Chiarezza
Da chiarire
Idoneità per principianti
25/100

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.