-
Notifications
You must be signed in to change notification settings - Fork 9.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Squashed 'pyextra/' content from commit 4eda4dd
git-subtree-dir: pyextra git-subtree-split: 4eda4dd765c2bc719da9064774de6b2c14c322d1
- Loading branch information
Vehicle Researcher
committed
Dec 24, 2017
0 parents
commit 57b9ddf
Showing
56 changed files
with
13,405 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
*.pyc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
Jinja2 | ||
~~~~~~ | ||
|
||
Jinja2 is a template engine written in pure Python. It provides a | ||
`Django`_ inspired non-XML syntax but supports inline expressions and | ||
an optional `sandboxed`_ environment. | ||
|
||
Nutshell | ||
-------- | ||
|
||
Here a small example of a Jinja template:: | ||
|
||
{% extends 'base.html' %} | ||
{% block title %}Memberlist{% endblock %} | ||
{% block content %} | ||
<ul> | ||
{% for user in users %} | ||
<li><a href="{{ user.url }}">{{ user.username }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endblock %} | ||
|
||
Philosophy | ||
---------- | ||
|
||
Application logic is for the controller but don't try to make the life | ||
for the template designer too hard by giving him too few functionality. | ||
|
||
For more informations visit the new `Jinja2 webpage`_ and `documentation`_. | ||
|
||
.. _sandboxed: http://en.wikipedia.org/wiki/Sandbox_(computer_security) | ||
.. _Django: http://www.djangoproject.com/ | ||
.. _Jinja2 webpage: http://jinja.pocoo.org/ | ||
.. _documentation: http://jinja.pocoo.org/2/documentation/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
pip |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
Copyright (c) 2009 by the Jinja Team, see AUTHORS for more details. | ||
|
||
Some rights reserved. | ||
|
||
Redistribution and use in source and binary forms, with or without | ||
modification, are permitted provided that the following conditions are | ||
met: | ||
|
||
* Redistributions of source code must retain the above copyright | ||
notice, this list of conditions and the following disclaimer. | ||
|
||
* Redistributions in binary form must reproduce the above | ||
copyright notice, this list of conditions and the following | ||
disclaimer in the documentation and/or other materials provided | ||
with the distribution. | ||
|
||
* The names of the contributors may not be used to endorse or | ||
promote products derived from this software without specific | ||
prior written permission. | ||
|
||
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR | ||
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT | ||
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | ||
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | ||
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | ||
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | ||
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
Metadata-Version: 2.0 | ||
Name: Jinja2 | ||
Version: 2.9.6 | ||
Summary: A small but fast and easy to use stand-alone template engine written in pure python. | ||
Home-page: http://jinja.pocoo.org/ | ||
Author: Armin Ronacher | ||
Author-email: armin.ronacher@active-4.com | ||
License: BSD | ||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 2 | ||
Classifier: Programming Language :: Python :: 2.6 | ||
Classifier: Programming Language :: Python :: 2.7 | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Programming Language :: Python :: 3.3 | ||
Classifier: Programming Language :: Python :: 3.4 | ||
Classifier: Programming Language :: Python :: 3.5 | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Text Processing :: Markup :: HTML | ||
Requires-Dist: MarkupSafe (>=0.23) | ||
Provides-Extra: i18n | ||
Requires-Dist: Babel (>=0.8); extra == 'i18n' | ||
|
||
Jinja2 | ||
~~~~~~ | ||
|
||
Jinja2 is a template engine written in pure Python. It provides a | ||
`Django`_ inspired non-XML syntax but supports inline expressions and | ||
an optional `sandboxed`_ environment. | ||
|
||
Nutshell | ||
-------- | ||
|
||
Here a small example of a Jinja template:: | ||
|
||
{% extends 'base.html' %} | ||
{% block title %}Memberlist{% endblock %} | ||
{% block content %} | ||
<ul> | ||
{% for user in users %} | ||
<li><a href="{{ user.url }}">{{ user.username }}</a></li> | ||
{% endfor %} | ||
</ul> | ||
{% endblock %} | ||
|
||
Philosophy | ||
---------- | ||
|
||
Application logic is for the controller but don't try to make the life | ||
for the template designer too hard by giving him too few functionality. | ||
|
||
For more informations visit the new `Jinja2 webpage`_ and `documentation`_. | ||
|
||
.. _sandboxed: http://en.wikipedia.org/wiki/Sandbox_(computer_security) | ||
.. _Django: http://www.djangoproject.com/ | ||
.. _Jinja2 webpage: http://jinja.pocoo.org/ | ||
.. _documentation: http://jinja.pocoo.org/2/documentation/ | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
jinja2/__init__.py,sha256=Cx_UnJO4i_GqvKQsOu__mvGE_eMJSsBqITa26irtg5A,2565 | ||
jinja2/_compat.py,sha256=xP60CE5Qr8FTYcDE1f54tbZLKGvMwYml4-8T7Q4KG9k,2596 | ||
jinja2/_stringdefs.py,sha256=PYtqTmmWIhjXlFBoH-eE6fJkQvlu7nxUyQ2YlFB97VA,589381 | ||
jinja2/asyncfilters.py,sha256=cTDPvrS8Hp_IkwsZ1m9af_lr5nHysw7uTa5gV0NmZVE,4144 | ||
jinja2/asyncsupport.py,sha256=ZJO1Fdd9R93sDLrk6TZNuMQGgtuDmpTlENNRkLwZF7c,7765 | ||
jinja2/bccache.py,sha256=0xoVw0R9nj3vtzPl9g-zB5BKTLFJ7FFMq2ABbn1IkCI,12793 | ||
jinja2/compiler.py,sha256=lE5owyPwT1cGGZxWyzQtZLW7Uj1g3Vw1oVtBU8Uc_uM,62929 | ||
jinja2/constants.py,sha256=uwwV8ZUhHhacAuz5PTwckfsbqBaqM7aKfyJL7kGX5YQ,1626 | ||
jinja2/debug.py,sha256=UqEbKb4zofBABwvyA77Kr0-5IAQawKqC9t8ZeTIzpGU,12038 | ||
jinja2/defaults.py,sha256=GvVEQqIRvRMCbQF2NZSr0mlEN8lxvGixU5wIIAeRe1A,1323 | ||
jinja2/environment.py,sha256=z91L_efdYs-KNs6DBxQWDyYncOwOqn_0J4M5CfFj0Q8,50848 | ||
jinja2/exceptions.py,sha256=_Rj-NVi98Q6AiEjYQOsP8dEIdu5AlmRHzcSNOPdWix4,4428 | ||
jinja2/ext.py,sha256=9xq8fd_QPBIe4Z7hE1XawB7f1EDHrVZjpb2JiRTiG94,23867 | ||
jinja2/filters.py,sha256=1OYGhyN84yVmFUIOwJNRV_StqTCfPhnRLfJTmWbEe_8,33424 | ||
jinja2/idtracking.py,sha256=HHcCOMsQhCrrjwYAmikKqq_XetXLovCjXAThh9WbRAc,8760 | ||
jinja2/lexer.py,sha256=W4A830e-fj12zRT6rL7H91F4D6xwED5LjR8iMxjWuVQ,28238 | ||
jinja2/loaders.py,sha256=xiTuURKAEObyym0nU8PCIXu_Qp8fn0AJ5oIADUUm-5Q,17382 | ||
jinja2/meta.py,sha256=fmKHxkmZYAOm9QyWWy8EMd6eefAIh234rkBMW2X4ZR8,4340 | ||
jinja2/nodes.py,sha256=4_Ucxbkohtj4BAlpV0w_MpVmIxJNaVXDTBb4EHBA2JI,29392 | ||
jinja2/optimizer.py,sha256=MsdlFACJ0FRdPtjmCAdt7JQ9SGrXFaDNUaslsWQaG3M,1722 | ||
jinja2/parser.py,sha256=3tc82qO1Ovs9och_PjirbAmnWNT77n4wWjIQ8pEVKvU,35465 | ||
jinja2/runtime.py,sha256=axkTQXg2-oc_Cm35NEMDDas3Jbq3ATxNrDOEa5v3wIw,26835 | ||
jinja2/sandbox.py,sha256=Jx4MTxly8KvdkSWyui_kHY1_ZZ0RAQL4ojAy1KDRyK0,16707 | ||
jinja2/tests.py,sha256=iFuUTbUYv7TFffq2aTswCRdIhQ6wyrby1YevChVPqkE,4428 | ||
jinja2/utils.py,sha256=BIFqeXXsCUSjWx6MEwYhY6V4tXzVNs9WRXfB60MA9HY,19941 | ||
jinja2/visitor.py,sha256=JD1H1cANA29JcntFfN5fPyqQxB4bI4wC00BzZa-XHks,3316 | ||
Jinja2-2.9.6.dist-info/DESCRIPTION.rst,sha256=CXIS1UnPSk5_lZBS6Lb8ko-3lqGfjsiUwNBLXCTj2lc,975 | ||
Jinja2-2.9.6.dist-info/entry_points.txt,sha256=NdzVcOrqyNyKDxD09aERj__3bFx2paZhizFDsKmVhiA,72 | ||
Jinja2-2.9.6.dist-info/LICENSE.txt,sha256=JvzUNv3Io51EiWrAPm8d_SXjhJnEjyDYvB3Tvwqqils,1554 | ||
Jinja2-2.9.6.dist-info/METADATA,sha256=53LSXlqC86JTyLSPsDyAOmyV4pXIzzmmZoUXz7ogytA,2172 | ||
Jinja2-2.9.6.dist-info/metadata.json,sha256=vzvX25T4hwMOe1EIOBo9rpfiZerOB_KVLcplGG_qYtE,1394 | ||
Jinja2-2.9.6.dist-info/RECORD,, | ||
Jinja2-2.9.6.dist-info/top_level.txt,sha256=PkeVWtLb3-CqjWi1fO29OCbj55EhX_chhKrCdrVe_zs,7 | ||
Jinja2-2.9.6.dist-info/WHEEL,sha256=AvR0WeTpDaxT645bl5FQxUK6NPsTls2ttpcGJg3j1Xg,110 | ||
Jinja2-2.9.6.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4 | ||
jinja2/_compat.pyc,, | ||
jinja2/sandbox.pyc,, | ||
jinja2/_stringdefs.pyc,, | ||
jinja2/bccache.pyc,, | ||
jinja2/runtime.pyc,, | ||
jinja2/utils.pyc,, | ||
jinja2/parser.pyc,, | ||
jinja2/debug.pyc,, | ||
jinja2/lexer.pyc,, | ||
jinja2/defaults.pyc,, | ||
jinja2/visitor.pyc,, | ||
jinja2/nodes.pyc,, | ||
jinja2/environment.pyc,, | ||
jinja2/compiler.pyc,, | ||
jinja2/exceptions.pyc,, | ||
jinja2/filters.pyc,, | ||
jinja2/__init__.pyc,, | ||
jinja2/meta.pyc,, | ||
jinja2/loaders.pyc,, | ||
jinja2/ext.pyc,, | ||
jinja2/optimizer.pyc,, | ||
jinja2/constants.pyc,, | ||
jinja2/tests.pyc,, | ||
jinja2/idtracking.pyc,, |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
Wheel-Version: 1.0 | ||
Generator: bdist_wheel (0.24.0) | ||
Root-Is-Purelib: true | ||
Tag: py2-none-any | ||
Tag: py3-none-any | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
|
||
[babel.extractors] | ||
jinja2 = jinja2.ext:babel_extract[i18n] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"license": "BSD", "name": "Jinja2", "metadata_version": "2.0", "generator": "bdist_wheel (0.24.0)", "summary": "A small but fast and easy to use stand-alone template engine written in pure python.", "run_requires": [{"requires": ["Babel (>=0.8)"], "extra": "i18n"}, {"requires": ["MarkupSafe (>=0.23)"]}], "version": "2.9.6", "extensions": {"python.details": {"project_urls": {"Home": "http://jinja.pocoo.org/"}, "document_names": {"description": "DESCRIPTION.rst", "license": "LICENSE.txt"}, "contacts": [{"role": "author", "email": "armin.ronacher@active-4.com", "name": "Armin Ronacher"}]}, "python.exports": {"babel.extractors": {"jinja2": "jinja2.ext:babel_extract [i18n]"}}}, "classifiers": ["Development Status :: 5 - Production/Stable", "Environment :: Web Environment", "Intended Audience :: Developers", "License :: OSI Approved :: BSD License", "Operating System :: OS Independent", "Programming Language :: Python", "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.6", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Topic :: Internet :: WWW/HTTP :: Dynamic Content", "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Text Processing :: Markup :: HTML"], "extras": ["i18n"]} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
jinja2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
Metadata-Version: 1.1 | ||
Name: MarkupSafe | ||
Version: 1.0 | ||
Summary: Implements a XML/HTML/XHTML Markup safe string for Python | ||
Home-page: http://github.com/pallets/markupsafe | ||
Author: Armin Ronacher | ||
Author-email: armin.ronacher@active-4.com | ||
License: BSD | ||
Description: MarkupSafe | ||
========== | ||
|
||
Implements a unicode subclass that supports HTML strings: | ||
|
||
.. code-block:: python | ||
|
||
>>> from markupsafe import Markup, escape | ||
>>> escape("<script>alert(document.cookie);</script>") | ||
Markup(u'<script>alert(document.cookie);</script>') | ||
>>> tmpl = Markup("<em>%s</em>") | ||
>>> tmpl % "Peter > Lustig" | ||
Markup(u'<em>Peter > Lustig</em>') | ||
|
||
If you want to make an object unicode that is not yet unicode | ||
but don't want to lose the taint information, you can use the | ||
``soft_unicode`` function. (On Python 3 you can also use ``soft_str`` which | ||
is a different name for the same function). | ||
|
||
.. code-block:: python | ||
|
||
>>> from markupsafe import soft_unicode | ||
>>> soft_unicode(42) | ||
u'42' | ||
>>> soft_unicode(Markup('foo')) | ||
Markup(u'foo') | ||
|
||
HTML Representations | ||
-------------------- | ||
|
||
Objects can customize their HTML markup equivalent by overriding | ||
the ``__html__`` function: | ||
|
||
.. code-block:: python | ||
|
||
>>> class Foo(object): | ||
... def __html__(self): | ||
... return '<strong>Nice</strong>' | ||
... | ||
>>> escape(Foo()) | ||
Markup(u'<strong>Nice</strong>') | ||
>>> Markup(Foo()) | ||
Markup(u'<strong>Nice</strong>') | ||
|
||
Silent Escapes | ||
-------------- | ||
|
||
Since MarkupSafe 0.10 there is now also a separate escape function | ||
called ``escape_silent`` that returns an empty string for ``None`` for | ||
consistency with other systems that return empty strings for ``None`` | ||
when escaping (for instance Pylons' webhelpers). | ||
|
||
If you also want to use this for the escape method of the Markup | ||
object, you can create your own subclass that does that: | ||
|
||
.. code-block:: python | ||
|
||
from markupsafe import Markup, escape_silent as escape | ||
|
||
class SilentMarkup(Markup): | ||
__slots__ = () | ||
|
||
@classmethod | ||
def escape(cls, s): | ||
return cls(escape(s)) | ||
|
||
New-Style String Formatting | ||
--------------------------- | ||
|
||
Starting with MarkupSafe 0.21 new style string formats from Python 2.6 and | ||
3.x are now fully supported. Previously the escape behavior of those | ||
functions was spotty at best. The new implementations operates under the | ||
following algorithm: | ||
|
||
1. if an object has an ``__html_format__`` method it is called as | ||
replacement for ``__format__`` with the format specifier. It either | ||
has to return a string or markup object. | ||
2. if an object has an ``__html__`` method it is called. | ||
3. otherwise the default format system of Python kicks in and the result | ||
is HTML escaped. | ||
|
||
Here is how you can implement your own formatting: | ||
|
||
.. code-block:: python | ||
|
||
class User(object): | ||
|
||
def __init__(self, id, username): | ||
self.id = id | ||
self.username = username | ||
|
||
def __html_format__(self, format_spec): | ||
if format_spec == 'link': | ||
return Markup('<a href="/user/{0}">{1}</a>').format( | ||
self.id, | ||
self.__html__(), | ||
) | ||
elif format_spec: | ||
raise ValueError('Invalid format spec') | ||
return self.__html__() | ||
|
||
def __html__(self): | ||
return Markup('<span class=user>{0}</span>').format(self.username) | ||
|
||
And to format that user: | ||
|
||
.. code-block:: python | ||
|
||
>>> user = User(1, 'foo') | ||
>>> Markup('<p>User: {0:link}').format(user) | ||
Markup(u'<p>User: <a href="/user/1"><span class=user>foo</span></a>') | ||
|
||
Markupsafe supports Python 2.6, 2.7 and Python 3.3 and higher. | ||
|
||
Platform: UNKNOWN | ||
Classifier: Development Status :: 5 - Production/Stable | ||
Classifier: Environment :: Web Environment | ||
Classifier: Intended Audience :: Developers | ||
Classifier: License :: OSI Approved :: BSD License | ||
Classifier: Operating System :: OS Independent | ||
Classifier: Programming Language :: Python | ||
Classifier: Programming Language :: Python :: 3 | ||
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content | ||
Classifier: Topic :: Software Development :: Libraries :: Python Modules | ||
Classifier: Topic :: Text Processing :: Markup :: HTML |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
AUTHORS | ||
CHANGES | ||
LICENSE | ||
MANIFEST.in | ||
README.rst | ||
setup.cfg | ||
setup.py | ||
tests.py | ||
MarkupSafe.egg-info/PKG-INFO | ||
MarkupSafe.egg-info/SOURCES.txt | ||
MarkupSafe.egg-info/dependency_links.txt | ||
MarkupSafe.egg-info/not-zip-safe | ||
MarkupSafe.egg-info/top_level.txt | ||
markupsafe/__init__.py | ||
markupsafe/_compat.py | ||
markupsafe/_constants.py | ||
markupsafe/_native.py | ||
markupsafe/_speedups.c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
../markupsafe/__init__.py | ||
../markupsafe/_compat.py | ||
../markupsafe/_constants.py | ||
../markupsafe/_native.py | ||
../markupsafe/_speedups.c | ||
../markupsafe/__init__.pyc | ||
../markupsafe/_compat.pyc | ||
../markupsafe/_constants.pyc | ||
../markupsafe/_native.pyc | ||
../markupsafe/_speedups.so | ||
dependency_links.txt | ||
not-zip-safe | ||
PKG-INFO | ||
SOURCES.txt | ||
top_level.txt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
markupsafe |
Oops, something went wrong.