Un altro modo per estendere (in particolare significa, aggiungere nuovi metodi, non modificare quelli esistenti) le classi, anche quelle incorporate, è usare un preprocessore che aggiunge la capacità di estendersi al di fuori / al di sopra dell'ambito di Python stesso, convertendo l'estensione in normale sintassi di Python prima che Python riesca effettivamente a vederla.
L'ho fatto per estendere la str()
classe di Python 2 , ad esempio. str()
è un target particolarmente interessante a causa del collegamento implicito a dati citati come 'this'
e 'that'
.
Ecco un po 'di codice di estensione, in cui l'unica sintassi non Python aggiunta è il extend:testDottedQuad
bit:
extend:testDottedQuad
def testDottedQuad(strObject):
if not isinstance(strObject, basestring): return False
listStrings = strObject.split('.')
if len(listStrings) != 4: return False
for strNum in listStrings:
try: val = int(strNum)
except: return False
if val < 0: return False
if val > 255: return False
return True
Dopodiché posso scrivere nel codice fornito al preprocessore:
if '192.168.1.100'.testDottedQuad():
doSomething()
dq = '216.126.621.5'
if not dq.testDottedQuad():
throwWarning();
dqt = ''.join(['127','.','0','.','0','.','1']).testDottedQuad()
if dqt:
print 'well, that was fun'
Il preprocessore lo mangia, sputa il normale Python senza monkeypatching e Python fa quello che volevo che facesse.
Proprio come un preprocessore ac aggiunge funzionalità a c, così anche un preprocessore Python può aggiungere funzionalità a Python.
L'implementazione del mio preprocessore è troppo grande per una risposta di overflow dello stack, ma per coloro che potrebbero essere interessati, è qui su GitHub.