Skip to content

Commit

Permalink
Remove unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed May 28, 2012
1 parent 085f1f1 commit af7fb08
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
1 change: 0 additions & 1 deletion tornado/httpserver.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ class except to start a server at the beginning of the process
import logging import logging
import socket import socket
import time import time
import urlparse


from tornado.escape import utf8, native_str, parse_qs_bytes from tornado.escape import utf8, native_str, parse_qs_bytes
from tornado import httputil from tornado import httputil
Expand Down
2 changes: 1 addition & 1 deletion tornado/test/web_test.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -745,7 +745,7 @@ def get(self, path):


@classmethod @classmethod
def make_static_url(cls, settings, path): def make_static_url(cls, settings, path):
version_hash = cls.get_version(settings, path) cls.get_version(settings, path)
extension_index = path.rindex('.') extension_index = path.rindex('.')
before_version = path[:extension_index] before_version = path[:extension_index]
after_version = path[(extension_index + 1):] after_version = path[(extension_index + 1):]
Expand Down
1 change: 0 additions & 1 deletion tornado/wsgi.py
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
from __future__ import absolute_import, division, with_statement from __future__ import absolute_import, division, with_statement


import Cookie import Cookie
import cgi
import httplib import httplib
import logging import logging
import sys import sys
Expand Down

0 comments on commit af7fb08

Please sign in to comment.