Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(69)

Side by Side Diff: mojo/public/third_party/jinja2/_compat.py

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 # -*- coding: utf-8 -*- 1 # -*- coding: utf-8 -*-
2 """ 2 """
3 jinja2._compat 3 jinja2._compat
4 ~~~~~~~~~~~~~~ 4 ~~~~~~~~~~~~~~
5 5
6 Some py2/py3 compatibility support based on a stripped down 6 Some py2/py3 compatibility support based on a stripped down
7 version of six so we don't have to depend on a specific version 7 version of six so we don't have to depend on a specific version
8 of it. 8 of it.
9 9
10 :copyright: Copyright 2013 by the Jinja team, see AUTHORS. 10 :copyright: Copyright 2013 by the Jinja team, see AUTHORS.
(...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after
141 from urllib import quote as url_quote 141 from urllib import quote as url_quote
142 142
143 143
144 try: 144 try:
145 from thread import allocate_lock 145 from thread import allocate_lock
146 except ImportError: 146 except ImportError:
147 try: 147 try:
148 from threading import Lock as allocate_lock 148 from threading import Lock as allocate_lock
149 except ImportError: 149 except ImportError:
150 from dummy_thread import allocate_lock 150 from dummy_thread import allocate_lock
OLDNEW
« no previous file with comments | « mojo/public/third_party/jinja2/__init__.py ('k') | mojo/public/third_party/jinja2/_stringdefs.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698