Merge pull request #100 from cclauss/patch-3

Define xrange() in Python 3
pull/108/head
wenxianping 2019-01-07 22:34:20 +08:00 committed by GitHub
commit 15491c8aa6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -3,6 +3,11 @@ from config.TicketEnmu import ticket
from myException.PassengerUserException import PassengerUserException
import wrapcache
try:
xrange # Python 2
except NameError:
xrange = range # Python 3
class getPassengerDTOs:
"""