Adds more functionality to Python and an easy to use wrapper for forbiddenfruit.
from betterpython import modify
@modify(str)
def remove(self, substr):
return self.replace(substr, "")
print("This is a string".remove("i")) # Ths s a strng
Adds more functionality to Python and an easy to use wrapper for forbiddenfruit.
PythonMIT