massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / coc-python-data / languageServer.0.5.59 / Typeshed / third_party / 2and3 / jinja2 / _compat.pyi
diff --git a/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/jinja2/_compat.pyi b/.config/coc/extensions/coc-python-data/languageServer.0.5.59/Typeshed/third_party/2and3/jinja2/_compat.pyi
new file mode 100644 (file)
index 0000000..68583d9
--- /dev/null
@@ -0,0 +1,34 @@
+from typing import Any, Optional\r
+import sys\r
+\r
+if sys.version_info[0] >= 3:\r
+    from io import BytesIO\r
+    from urllib.parse import quote_from_bytes as url_quote\r
+else:\r
+    from cStringIO import StringIO as BytesIO\r
+    from urllib import quote as url_quote\r
+\r
+PY2 = ...  # type: Any\r
+PYPY = ...  # type: Any\r
+unichr = ...  # type: Any\r
+range_type = ...  # type: Any\r
+text_type = ...  # type: Any\r
+string_types = ...  # type: Any\r
+integer_types = ...  # type: Any\r
+iterkeys = ...  # type: Any\r
+itervalues = ...  # type: Any\r
+iteritems = ...  # type: Any\r
+NativeStringIO = ...  # type: Any\r
+\r
+def reraise(tp, value, tb: Optional[Any] = ...): ...\r
+\r
+ifilter = ...  # type: Any\r
+imap = ...  # type: Any\r
+izip = ...  # type: Any\r
+intern = ...  # type: Any\r
+implements_iterator = ...  # type: Any\r
+implements_to_string = ...  # type: Any\r
+encode_filename = ...  # type: Any\r
+get_next = ...  # type: Any\r
+\r
+def with_metaclass(meta, *bases): ...\r