✘✘ GRAYBYTE WORDPRESS FILE MANAGER ✘✘

​🇳​​🇦​​🇲​​🇪♯➤ beluga.o2switch.net ​🇻​♯➤ 4.18.0-553.123.2.lve.el8.x86_64 #1 SMP 🇾​♯➤ 2026

𝗛𝗢𝗠𝗘 𝗜𝗗 ♯➤ 185.154.139.77 ♯➤ 𝗔𝗗𝗠𝗜𝗡 𝗜𝗗 216.73.216.84
𝗢𝗣𝗧𝗜𝗢𝗡𝗦 ♯ CRL ♯➤ 𝗢𝗞 ┃ WGT ♯➤ 𝗢𝗞 ┃ SDO ♯➤ 𝗢𝗙𝗙 ┃ PKEX ♯➤ 𝗢𝗙𝗙
𝗗𝗘𝗔𝗖𝗧𝗜𝗩𝗔𝗧𝗘𝗗 ♯➤ 𝗔𝗟𝗟 𝗪𝗢𝗥𝗞𝗜𝗡𝗚....

𝗛𝗢𝗠𝗘
𝗖𝗨𝗥𝗥𝗘𝗡𝗧 𝗙𝗜𝗟𝗘 : /opt/alt/python35/lib/python3.5/site-packages//speaklater.py
# -*- coding: utf-8 -*-
r"""
    speaklater
    ~~~~~~~~~~

    A module that provides lazy strings for translations.  Basically you
    get an object that appears to be a string but changes the value every
    time the value is evaluated based on a callable you provide.

    For example you can have a global `lazy_gettext` function that returns
    a lazy string with the value of the current set language.

    Example:

    >>> from speaklater import make_lazy_string
    >>> sval = u'Hello World'
    >>> string = make_lazy_string(lambda: sval)

    This lazy string will evaluate to the value of the `sval` variable.

    >>> string
    lu'Hello World'
    >>> unicode(string)
    u'Hello World'
    >>> string.upper()
    u'HELLO WORLD'

    If you change the value, the lazy string will change as well:

    >>> sval = u'Hallo Welt'
    >>> string.upper()
    u'HALLO WELT'

    This is especially handy when combined with a thread local and gettext
    translations or dicts of translatable strings:

    >>> from speaklater import make_lazy_gettext
    >>> from threading import local
    >>> l = local()
    >>> l.translations = {u'Yes': 'Ja'}
    >>> lazy_gettext = make_lazy_gettext(lambda: l.translations.get)
    >>> yes = lazy_gettext(u'Yes')
    >>> print yes
    Ja
    >>> l.translations[u'Yes'] = u'Si'
    >>> print yes
    Si

    Lazy strings are no real strings so if you pass this sort of string to
    a function that performs an instance check, it will fail.  In that case
    you have to explicitly convert it with `unicode` and/or `string` depending
    on what string type the lazy string encapsulates.

    To check if a string is lazy, you can use the `is_lazy_string` function:

    >>> from speaklater import is_lazy_string
    >>> is_lazy_string(u'yes')
    False
    >>> is_lazy_string(yes)
    True

    New in version 1.2: It's now also possible to pass keyword arguments to
    the callback used with `make_lazy_string`.

    :copyright: (c) 2010 by Armin Ronacher.
    :license: BSD, see LICENSE for more details.
"""


def is_lazy_string(obj):
    """Checks if the given object is a lazy string."""
    return isinstance(obj, _LazyString)


def make_lazy_string(__func, *args, **kwargs):
    """Creates a lazy string by invoking func with args."""
    return _LazyString(__func, args, kwargs)


def make_lazy_gettext(lookup_func):
    """Creates a lazy gettext function dispatches to a gettext
    function as returned by `lookup_func`.

    Example:

    >>> translations = {u'Yes': u'Ja'}
    >>> lazy_gettext = make_lazy_gettext(lambda: translations.get)
    >>> x = lazy_gettext(u'Yes')
    >>> x
    lu'Ja'
    >>> translations[u'Yes'] = u'Si'
    >>> x
    lu'Si'
    """
    def lazy_gettext(string):
        if is_lazy_string(string):
            return string
        return make_lazy_string(lookup_func(), string)
    return lazy_gettext


class _LazyString(object):
    """Class for strings created by a function call.

    The proxy implementation attempts to be as complete as possible, so that
    the lazy objects should mostly work as expected, for example for sorting.
    """
    __slots__ = ('_func', '_args', '_kwargs')

    def __init__(self, func, args, kwargs):
        self._func = func
        self._args = args
        self._kwargs = kwargs

    value = property(lambda x: x._func(*x._args, **x._kwargs))

    def __contains__(self, key):
        return key in self.value

    def __nonzero__(self):
        return bool(self.value)

    def __dir__(self):
        return dir(unicode)

    def __iter__(self):
        return iter(self.value)

    def __len__(self):
        return len(self.value)

    def __str__(self):
        return str(self.value)

    def __unicode__(self):
        return unicode(self.value)

    def __add__(self, other):
        return self.value + other

    def __radd__(self, other):
        return other + self.value

    def __mod__(self, other):
        return self.value % other

    def __rmod__(self, other):
        return other % self.value

    def __mul__(self, other):
        return self.value * other

    def __rmul__(self, other):
        return other * self.value

    def __lt__(self, other):
        return self.value < other

    def __le__(self, other):
        return self.value <= other

    def __eq__(self, other):
        return self.value == other

    def __ne__(self, other):
        return self.value != other

    def __gt__(self, other):
        return self.value > other

    def __ge__(self, other):
        return self.value >= other

    def __getattr__(self, name):
        if name == '__members__':
            return self.__dir__()
        return getattr(self.value, name)

    def __getstate__(self):
        return self._func, self._args, self._kwargs

    def __setstate__(self, tup):
        self._func, self._args, self._kwargs = tup

    def __getitem__(self, key):
        return self.value[key]

    def __copy__(self):
        return self

    def __repr__(self):
        try:
            return 'l' + repr(self.value)
        except Exception:
            return '<%s broken>' % self.__class__.__name__


if __name__ == '__main__':
    import doctest
    doctest.testmod()


Current_dir [ 𝗡𝗢𝗧 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ] Document_root [ 𝗪𝗥𝗜𝗧𝗘𝗔𝗕𝗟𝗘 ]


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
31 May 2024 1.51 PM
root / linksafe
0755
CXX
--
25 Jul 2024 8.44 AM
root / linksafe
0755
Cerberus-1.1-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
PyJWT-1.6.4-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
PyMySQL-0.7.11-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
SentryLogs-0.3.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
__pycache__
--
31 May 2024 1.51 PM
root / linksafe
0755
aiodns
--
25 Jul 2024 8.44 AM
root / linksafe
0755
aiodns-2.0.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
aioredis
--
25 Jul 2024 8.44 AM
root / linksafe
0755
aioredis-1.1.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
asn1crypto
--
25 Jul 2024 8.43 AM
root / linksafe
0755
asn1crypto-0.22.0-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
async_timeout
--
25 Jul 2024 8.41 AM
root / linksafe
0755
async_timeout-1.3.0-py3.5.egg-info
--
25 Jul 2024 8.41 AM
root / linksafe
0755
attr
--
25 Jul 2024 8.41 AM
root / linksafe
0755
attrs-17.4.0-py3.5.egg-info
--
25 Jul 2024 8.41 AM
root / linksafe
0755
blinker
--
25 Jul 2024 8.44 AM
root / root
0755
blinker-1.4-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / root
0755
cached_property-1.3.0-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
captcha
--
25 Jul 2024 8.44 AM
root / linksafe
0755
captcha-0.2.1-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
cerberus
--
25 Jul 2024 8.44 AM
root / linksafe
0755
certifi
--
25 Jul 2024 8.41 AM
root / linksafe
0755
certifi-2018.4.16-py3.5.egg-info
--
25 Jul 2024 8.41 AM
root / linksafe
0755
chardet
--
25 Jul 2024 8.41 AM
root / linksafe
0755
chardet-3.0.4-py3.5.egg-info
--
25 Jul 2024 8.41 AM
root / linksafe
0755
click
--
25 Jul 2024 8.43 AM
root / linksafe
0755
click-6.6-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
contextlib2-0.5.4-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
cryptography_vectors
--
25 Jul 2024 8.44 AM
root / linksafe
0755
cryptography_vectors-1.9-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
cycler-0.10.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
daemon
--
25 Jul 2024 8.44 AM
root / linksafe
0755
dateutil
--
25 Jul 2024 8.42 AM
root / linksafe
0755
docutils
--
25 Jul 2024 8.44 AM
root / linksafe
0755
fasteners
--
25 Jul 2024 8.44 AM
root / linksafe
0755
fasteners-0.14.1-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
funcsigs
--
25 Jul 2024 8.43 AM
root / linksafe
0755
funcsigs-1.0.2-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
geoip2
--
25 Jul 2024 8.44 AM
root / linksafe
0755
geoip2-2.4.2-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
google
--
25 Jul 2024 8.44 AM
root / linksafe
0755
google_apputils-0.4.2-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
humanize
--
25 Jul 2024 8.44 AM
root / linksafe
0755
humanize-0.5.1-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
idna
--
25 Jul 2024 8.41 AM
root / linksafe
0755
idna-2.5-py3.5.egg-info
--
25 Jul 2024 8.41 AM
root / linksafe
0755
idna_ssl-1.0.1-py3.5.egg-info
--
25 Jul 2024 8.42 AM
root / linksafe
0755
ipaddress-1.0.18-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
joblib
--
25 Jul 2024 8.44 AM
root / linksafe
0755
joblib-0.10.3-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
jsonschema
--
25 Jul 2024 8.44 AM
root / linksafe
0755
jsonschema-3.0.1-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
jwt
--
25 Jul 2024 8.44 AM
root / linksafe
0755
lockfile
--
25 Jul 2024 8.43 AM
root / linksafe
0755
lockfile-0.12.2-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
mock
--
25 Jul 2024 8.43 AM
root / linksafe
0755
mock-2.0.0-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
nose
--
25 Jul 2024 8.43 AM
root / linksafe
0755
nose-1.3.7-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
packaging
--
25 Jul 2024 8.43 AM
root / linksafe
0755
packaging-16.8-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
pbr
--
25 Jul 2024 8.43 AM
root / linksafe
0755
pbr-1.8.1-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
peewee_migrate
--
25 Jul 2024 8.44 AM
root / linksafe
0755
peewee_migrate-0.6.4-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
pip
--
11 Jan 2024 11.44 AM
root / linksafe
0755
pip-20.2.4.dist-info
--
11 Jan 2024 11.44 AM
root / linksafe
0755
pkg_resources
--
11 Jan 2024 11.46 AM
root / linksafe
0755
ply
--
25 Jul 2024 8.43 AM
root / linksafe
0755
ply-3.8-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
pycparser
--
25 Jul 2024 8.43 AM
root / linksafe
0755
pycparser-2.14-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
pyflakes
--
25 Jul 2024 8.44 AM
root / linksafe
0755
pyflakes-1.5.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
pymysql
--
25 Jul 2024 8.44 AM
root / linksafe
0755
pyparsing-2.1.10-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
python_daemon-2.1.1-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
python_dateutil-2.6.0-py3.5.egg-info
--
25 Jul 2024 8.42 AM
root / linksafe
0755
python_gflags-2.0-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
python_magic-0.4.13-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
python_pam-1.8.4-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
pytz
--
25 Jul 2024 8.43 AM
root / linksafe
0755
pytz-2017.2-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
raven
--
25 Jul 2024 8.43 AM
root / linksafe
0755
raven-6.3.0-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
requests
--
25 Jul 2024 8.43 AM
root / root
0755
requests-2.19.1-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
requests_mock
--
25 Jul 2024 8.44 AM
root / linksafe
0755
requests_mock-1.2.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
sdnotify
--
25 Jul 2024 8.44 AM
root / linksafe
0755
sentry_sdk
--
25 Jul 2024 8.44 AM
root / linksafe
0755
sentry_sdk-0.7.10-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
sentrylogs
--
25 Jul 2024 8.44 AM
root / linksafe
0755
setuptools
--
11 Jan 2024 11.46 AM
root / linksafe
0755
setuptools-36.3.0.post20231113.dist-info
--
11 Jan 2024 11.46 AM
root / linksafe
0755
setuptools_scm
--
25 Jul 2024 8.44 AM
root / linksafe
0755
setuptools_scm-3.2.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
six-1.12.0-py3.5.egg-info
--
25 Jul 2024 8.41 AM
root / linksafe
0755
speaklater-1.3-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
tailer
--
25 Jul 2024 8.43 AM
root / linksafe
0755
urllib3
--
25 Jul 2024 8.43 AM
root / linksafe
0755
urllib3-1.23-py3.5.egg-info
--
25 Jul 2024 8.43 AM
root / linksafe
0755
wheel
--
25 Jul 2024 8.44 AM
root / linksafe
0755
wheel-0.29.0-py3.5.egg-info
--
25 Jul 2024 8.44 AM
root / linksafe
0755
CXX-6.2.8-py3.5.egg-info
0.251 KB
11 Dec 2019 5.02 PM
root / linksafe
0644
PySocks-1.5.7-py3.5.egg-info
0.314 KB
23 Nov 2019 10.46 AM
root / linksafe
0644
bottle-0.12.9-py3.5.egg-info
1.652 KB
23 Nov 2019 10.05 AM
root / linksafe
0644
bottle.py
146.053 KB
23 Nov 2019 10.05 AM
root / linksafe
0644
cached_property.py
3.809 KB
25 Nov 2015 1.48 AM
root / linksafe
0644
contextlib2.py
14.48 KB
31 Jul 2016 3.42 AM
root / linksafe
0644
cycler.py
15.585 KB
16 Feb 2016 4.56 AM
root / linksafe
0644
docutils-0.14-py3.5.egg-info
2.31 KB
23 Nov 2019 10.07 AM
root / linksafe
0644
easy_install.py
0.123 KB
13 Nov 2023 9.23 PM
root / linksafe
0644
gflags.py
101.811 KB
23 Nov 2019 9.56 AM
root / linksafe
0644
gflags_validators.py
6.791 KB
23 Nov 2019 9.56 AM
root / linksafe
0644
google_apputils-0.4.2-py3.5-nspkg.pth
0.526 KB
10 Dec 2019 7.43 PM
root / linksafe
0644
idna_ssl.py
0.65 KB
6 Mar 2018 3.10 PM
root / linksafe
0644
ipaddress.py
78.277 KB
11 Jan 2017 12.29 PM
root / linksafe
0644
magic.py
9.133 KB
20 Mar 2017 6.23 AM
root / linksafe
0644
pam.py
7.379 KB
16 Jun 2018 6.02 AM
root / linksafe
0644
pyparsing.py
224.479 KB
7 Oct 2016 1.31 AM
root / linksafe
0644
sdnotify-0.3.2-py3.5.egg-info
1.106 KB
11 Dec 2019 5.00 PM
root / linksafe
0644
six.py
31.691 KB
10 Dec 2018 12.59 AM
root / linksafe
0644
socks.py
29.25 KB
21 May 2016 9.54 PM
root / linksafe
0644
sockshandler.py
2.845 KB
21 May 2016 9.54 PM
root / linksafe
0644
speaklater.py
5.094 KB
17 Oct 2010 3.03 PM
root / linksafe
0644
tailer-0.4.1-py3.5.egg-info
3.041 KB
15 Nov 2019 10.11 PM
root / linksafe
0644

✘✘ GRAYBYTE WORDPRESS FILE MANAGER @ 2026 CONTACT ME ✘✘
Static GIF Static GIF