Created
November 15, 2012 12:41
-
-
Save SimonSapin/4078445 to your computer and use it in GitHub Desktop.
Signed integer converter for Werkzeug routing.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from werkzeug.routing import IntegerConverter | |
class SignedIntegerConverter(IntegerConverter): | |
regex = r'-?\d+' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment