Domande taggate «attributeerror»



5
AttributeError (l'oggetto "'str' non ha attributi 'read'”)
In Python ricevo un errore: Exception: (<type 'exceptions.AttributeError'>, AttributeError("'str' object has no attribute 'read'",), <traceback object at 0x1543ab8>) Dato codice python: def getEntries (self, sub): url = 'http://www.reddit.com/' if (sub != ''): url += 'r/' + sub request = urllib2.Request (url + '.json', None, {'User-Agent' : 'Reddit desktop client by …

8
__getattr__ su un modulo
Come può implementare l'equivalente di a __getattr__su una classe, su un modulo? Esempio Quando si chiama una funzione che non esiste negli attributi definiti staticamente di un modulo, desidero creare un'istanza di una classe in quel modulo e invocare il metodo su di esso con lo stesso nome fallito nella …

16
Perché Python 3.6.1 lancia AttributeError: il modulo 'enum' non ha l'attributo 'IntFlag'?
Ho appena installato Python 3.6.1 per MacOS X Quando tento di eseguire la console (o eseguire qualsiasi cosa con Python3), viene generato questo errore: AttributeError: module 'enum' has no attribute 'IntFlag' $ /Library/Frameworks/Python.framework/Versions/3.6/bin/python3 Failed to import the site module Traceback (most recent call last): File "/usr/local/Cellar/python3/3.6.1/Frameworks/Python.framework/Versions/3.6/lib/python3.6/site.py", line 544, in <module> …

Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.