OXIESEC PANEL
- Current Dir:
/
/
snap
/
core20
/
2599
/
usr
/
lib
/
python3
/
dist-packages
/
markupsafe
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
__init__.py
9.93 KB
11/05/2018 05:06:10 PM
rw-r--r--
📁
__pycache__
-
05/26/2025 10:13:33 PM
rwxr-xr-x
📄
_compat.py
596 bytes
11/05/2018 02:13:34 PM
rw-r--r--
📄
_constants.py
4.62 KB
11/05/2018 02:13:34 PM
rw-r--r--
📄
_native.py
1.87 KB
11/05/2018 02:13:34 PM
rw-r--r--
📄
_speedups.cpython-38-x86_64-linux-gnu.so
14.46 KB
02/18/2020 09:44:10 AM
rw-r--r--
Editing: _compat.py
Close
# -*- coding: utf-8 -*- """ markupsafe._compat ~~~~~~~~~~~~~~~~~~ :copyright: © 2010 by the Pallets team. :license: BSD, see LICENSE for more details. """ import sys PY2 = sys.version_info[0] == 2 if not PY2: text_type = str string_types = (str,) unichr = chr int_types = (int,) def iteritems(x): return iter(x.items()) from collections.abc import Mapping else: text_type = unicode string_types = (str, unicode) unichr = unichr int_types = (int, long) def iteritems(x): return x.iteritems() from collections import Mapping