6 lines
132 B
Python
6 lines
132 B
Python
class RealIntConverter:
|
|
regex='[0-9]+'
|
|
def to_python(self,value):
|
|
return int(value)
|
|
def to_url(self,value):
|
|
return str(value) |