Module refinery.units.strings.cupper
Expand source code Browse git
from __future__ import annotations
from refinery.units import Unit
class cupper(Unit):
"""
Convert all latin alphabet characters in the input to uppercase.
"""
def process(self, data):
return data.upper()
Classes
class cupper-
Convert all latin alphabet characters in the input to uppercase.
Expand source code Browse git
class cupper(Unit): """ Convert all latin alphabet characters in the input to uppercase. """ def process(self, data): return data.upper()Ancestors
Subclasses
Class variables
var reverse-
The type of the None singleton.
Inherited members