Remove some no-longer-necessary mypy workarounds

Made obsolete by python/mypy#1010
This commit is contained in:
Ben Darnell 2016-04-24 10:04:15 -04:00
parent f4a306d74b
commit 55e7730c44
3 changed files with 4 additions and 4 deletions

View File

@ -335,7 +335,7 @@ class Template(object):
# __name__ and __loader__ allow the traceback mechanism to find # __name__ and __loader__ allow the traceback mechanism to find
# the generated source code. # the generated source code.
"__name__": self.name.replace('.', '_'), "__name__": self.name.replace('.', '_'),
"__loader__": ObjectDict(get_source=lambda name: self.code), # type: ignore "__loader__": ObjectDict(get_source=lambda name: self.code),
} }
namespace.update(self.namespace) namespace.update(self.namespace)
namespace.update(kwargs) namespace.update(kwargs)

View File

@ -206,7 +206,7 @@ three{%end%}
loader = DictLoader({ loader = DictLoader({
"base.html": "{% module Template('sub.html') %}", "base.html": "{% module Template('sub.html') %}",
"sub.html": "{{1/0}}", "sub.html": "{{1/0}}",
}, namespace={"_tt_modules": ObjectDict({"Template": lambda path, **kwargs: loader.load(path).generate(**kwargs)})}) }, namespace={"_tt_modules": ObjectDict(Template=lambda path, **kwargs: loader.load(path).generate(**kwargs))})
try: try:
loader.load("base.html").generate() loader.load("base.html").generate()
self.fail("did not get expected exception") self.fail("did not get expected exception")

View File

@ -81,9 +81,9 @@ class CookieTestRequestHandler(RequestHandler):
# don't call super.__init__ # don't call super.__init__
self._cookies = {} self._cookies = {}
if key_version is None: if key_version is None:
self.application = ObjectDict(settings=dict(cookie_secret=cookie_secret)) # type: ignore self.application = ObjectDict(settings=dict(cookie_secret=cookie_secret))
else: else:
self.application = ObjectDict(settings=dict(cookie_secret=cookie_secret, # type: ignore self.application = ObjectDict(settings=dict(cookie_secret=cookie_secret,
key_version=key_version)) key_version=key_version))
def get_cookie(self, name): def get_cookie(self, name):