00001 #!/usr/bin/env python 00002 # 00003 # Copyright 2009 Facebook 00004 # 00005 # Licensed under the Apache License, Version 2.0 (the "License"); you may 00006 # not use this file except in compliance with the License. You may obtain 00007 # a copy of the License at 00008 # 00009 # http://www.apache.org/licenses/LICENSE-2.0 00010 # 00011 # Unless required by applicable law or agreed to in writing, software 00012 # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT 00013 # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the 00014 # License for the specific language governing permissions and limitations 00015 # under the License. 00016 00017 """The Tornado web server and tools.""" 00018 00019 from __future__ import absolute_import, division, print_function, with_statement 00020 00021 # version is a human-readable version number. 00022 00023 # version_info is a four-tuple for programmatic comparison. The first 00024 # three numbers are the components of the version number. The fourth 00025 # is zero for an official release, positive for a development branch, 00026 # or negative for a release candidate or beta (after the base version 00027 # number has been incremented) 00028 version = "4.0.2" 00029 version_info = (4, 0, 2, 0)