AttributeError on `with super()`
Nessuno ha ancora preso questa issue.
- Lingua principale
- Python
- Stelle
- 77.2k
- Fork
- 35.9k
- Metriche di merge delle PR
- Metriche PR in attesa
Descrizione
Bug report
Bug description:
Writing with super() raises an AttributeError. I ran into this implementing context managers inspired by contextlib.contextmnager but which had extra functionality. I can see no reason why with super() should be disallowed, and in fact, super().__enter__() and super().__exit__() work just fine.
Attempting to use an ExitStack as a work around was unsuccessful.
import sys
from contextlib import ExitStack
class Base:
def __enter__(self):
print("Entering base context manager")
def __exit__(self, type, value, traceback):
print("Exiting base context manager")
def __derived_enter__(self):
self.context = self.contextlib_style_context()
next(self.context)
return self.context
def __derived_exit__(self, type, value, traceback):
try:
next(self.context)
except StopIteration:
pass
class DerivedUsingEnterExit(Base):
def contextlib_style_context(self):
print("Entering contextlib style context manager")
super().__enter__()
try:
yield
finally:
super().__exit__(*sys.exc_info())
print("Exiting contextlib style context manager")
__enter__ = __derived_enter__
__exit__ = __derived_exit__
class DerivedUsingWith(Base):
def contextlib_style_context(self):
print("Entering contextlib style context manager")
with super():
yield
print("Exiting contextlib style context manager")
__enter__ = __derived_enter__
__exit__ = __derived_exit__
class DerivedUsingExitStack(Base):
def contextlib_style_context(self):
print("Entering contextlib style context manager")
with ExitStack() as stack:
stack.enter_context(super())
yield
print("Exiting contextlib style context manager")
__enter__ = __derived_enter__
__exit__ = __derived_exit__
# Runs successfully
with DerivedUsingEnterExit() as d:
pass
# Raises AttributeError
with DerivedUsingWith() as d:
pass
# Raises AttributeError
with DerivedUsingExitStack() as d:
pass
CPython versions tested on:
3.13, 3.12
Operating systems tested on:
Windows
Guida per i contributori
Apri la guida per i contributori
Come iniziare
- Leggi tutta la issue e poi la guida ai contributi del progetto.
- Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
- Fai un fork del repository e lavora su un branch.
- Apri una pull request che faccia riferimento al numero della issue.
Direzione di ricerca
Inizia riproducendo gli esempi forniti di DerivedUsingWith e DerivedUsingExitStack su CPython 3.13 o 3.12, quindi traccia i punti di ingresso coinvolti di super() e del context manager. Confrontali con il caso funzionante super().enter() e super().exit(); completato significa che il comportamento previsto è stato stabilito e che l’AttributeError segnalato è coperto da un test di regressione.
Scritto dal modello di indicizzazione a partire dal testo della issue.
Valutazione
- Stack tecnologico
- python
- Ambito
- compilers
- Tipo di issue
- Bug
- Difficoltà
- 4/5
- Tempo stimato
- 3-5 giorni
- Stato di attività
- Ferma
- Chiarezza
- Abbastanza chiara
- Idoneità per principianti
- 35/100