✘✘ 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/python27/lib/python2.7/site-packages/_pytest//_argcomplete.py
"""allow bash-completion for argparse with argcomplete if installed
needs argcomplete>=0.5.6 for python 3.2/3.3 (older versions fail
to find the magic string, so _ARGCOMPLETE env. var is never set, and
this does not need special code.

argcomplete does not support python 2.5 (although the changes for that
are minor).

Function try_argcomplete(parser) should be called directly before
the call to ArgumentParser.parse_args().

The filescompleter is what you normally would use on the positional
arguments specification, in order to get "dirname/" after "dirn<TAB>"
instead of the default "dirname ":

   optparser.add_argument(Config._file_or_dir, nargs='*'
                               ).completer=filescompleter

Other, application specific, completers should go in the file
doing the add_argument calls as they need to be specified as .completer
attributes as well. (If argcomplete is not installed, the function the
attribute points to will not be used).

SPEEDUP
=======
The generic argcomplete script for bash-completion
(/etc/bash_completion.d/python-argcomplete.sh )
uses a python program to determine startup script generated by pip.
You can speed up completion somewhat by changing this script to include
  # PYTHON_ARGCOMPLETE_OK
so the the python-argcomplete-check-easy-install-script does not
need to be called to find the entry point of the code and see if that is
marked  with PYTHON_ARGCOMPLETE_OK

INSTALL/DEBUGGING
=================
To include this support in another application that has setup.py generated
scripts:
- add the line:
    # PYTHON_ARGCOMPLETE_OK
  near the top of the main python entry point
- include in the file calling parse_args():
    from _argcomplete import try_argcomplete, filescompleter
   , call try_argcomplete just before parse_args(), and optionally add
   filescompleter to the positional arguments' add_argument()
If things do not work right away:
- switch on argcomplete debugging with (also helpful when doing custom
  completers):
    export _ARC_DEBUG=1
- run:
    python-argcomplete-check-easy-install-script $(which appname)
    echo $?
  will echo 0 if the magic line has been found, 1 if not
- sometimes it helps to find early on errors using:
    _ARGCOMPLETE=1 _ARC_DEBUG=1 appname
  which should throw a KeyError: 'COMPLINE' (which is properly set by the
  global argcomplete script).
"""
from __future__ import absolute_import, division, print_function
import sys
import os
from glob import glob

class FastFilesCompleter:
    'Fast file completer class'
    def __init__(self, directories=True):
        self.directories = directories

    def __call__(self, prefix, **kwargs):
        """only called on non option completions"""
        if os.path.sep in prefix[1:]: #
            prefix_dir = len(os.path.dirname(prefix) + os.path.sep)
        else:
            prefix_dir = 0
        completion = []
        globbed = []
        if '*' not in prefix and '?' not in prefix:
            if prefix[-1] == os.path.sep:  # we are on unix, otherwise no bash
                globbed.extend(glob(prefix + '.*'))
            prefix += '*'
        globbed.extend(glob(prefix))
        for x in sorted(globbed):
            if os.path.isdir(x):
                x += '/'
            # append stripping the prefix (like bash, not like compgen)
            completion.append(x[prefix_dir:])
        return completion


if os.environ.get('_ARGCOMPLETE'):
    try:
        import argcomplete.completers
    except ImportError:
        sys.exit(-1)
    filescompleter = FastFilesCompleter()

    def try_argcomplete(parser):
        argcomplete.autocomplete(parser)
else:
    def try_argcomplete(parser): pass
    filescompleter = None


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


[ Back ]
𝗡𝗔𝗠𝗘
𝗦𝗜𝗭𝗘
𝗟𝗔𝗦𝗧 𝗧𝗢𝗨𝗖𝗛
𝗨𝗦𝗘𝗥
𝗦𝗧𝗔𝗧𝗨𝗦
𝗙𝗨𝗡𝗖𝗧𝗜𝗢𝗡𝗦
..
--
8 Jan 2025 10.42 AM
root / linksafe
0755
_code
--
25 Jul 2024 8.44 AM
root / linksafe
0755
assertion
--
25 Jul 2024 8.44 AM
root / linksafe
0755
vendored_packages
--
25 Jul 2024 8.44 AM
root / linksafe
0755
__init__.py
0.233 KB
26 May 2020 2.32 PM
root / linksafe
0644
__init__.pyc
0.309 KB
26 May 2020 2.32 PM
root / linksafe
0644
__init__.pyo
0.309 KB
26 May 2020 2.32 PM
root / linksafe
0644
_argcomplete.py
3.602 KB
26 May 2020 2.32 PM
root / linksafe
0644
_argcomplete.pyc
4.409 KB
26 May 2020 2.32 PM
root / linksafe
0644
_argcomplete.pyo
4.409 KB
26 May 2020 2.32 PM
root / linksafe
0644
_pluggy.py
0.416 KB
26 May 2020 2.32 PM
root / linksafe
0644
_pluggy.pyc
0.596 KB
26 May 2020 2.32 PM
root / linksafe
0644
_pluggy.pyo
0.596 KB
26 May 2020 2.32 PM
root / linksafe
0644
_version.py
0.114 KB
26 May 2020 2.32 PM
root / linksafe
0644
_version.pyc
0.176 KB
26 May 2020 2.32 PM
root / linksafe
0644
_version.pyo
0.176 KB
26 May 2020 2.32 PM
root / linksafe
0644
cacheprovider.py
8.782 KB
26 May 2020 2.32 PM
root / linksafe
0644
cacheprovider.pyc
11.082 KB
26 May 2020 2.32 PM
root / linksafe
0644
cacheprovider.pyo
11.082 KB
26 May 2020 2.32 PM
root / linksafe
0644
capture.py
14.958 KB
26 May 2020 2.32 PM
root / linksafe
0644
capture.pyc
22.174 KB
26 May 2020 2.32 PM
root / linksafe
0644
capture.pyo
22.063 KB
26 May 2020 2.32 PM
root / linksafe
0644
compat.py
8.851 KB
26 May 2020 2.32 PM
root / linksafe
0644
compat.pyc
11.364 KB
26 May 2020 2.32 PM
root / linksafe
0644
compat.pyo
11.296 KB
26 May 2020 2.32 PM
root / linksafe
0644
config.py
51.129 KB
26 May 2020 2.32 PM
root / linksafe
0644
config.pyc
53.269 KB
26 May 2020 2.32 PM
root / linksafe
0644
config.pyo
52.84 KB
26 May 2020 2.32 PM
root / linksafe
0644
debugging.py
3.906 KB
26 May 2020 2.32 PM
root / linksafe
0644
debugging.pyc
5.839 KB
26 May 2020 2.32 PM
root / linksafe
0644
debugging.pyo
5.839 KB
26 May 2020 2.32 PM
root / linksafe
0644
deprecated.py
1.023 KB
26 May 2020 2.32 PM
root / linksafe
0644
deprecated.pyc
1.263 KB
26 May 2020 2.32 PM
root / linksafe
0644
deprecated.pyo
1.263 KB
26 May 2020 2.32 PM
root / linksafe
0644
doctest.py
11.833 KB
26 May 2020 2.32 PM
root / linksafe
0644
doctest.pyc
13.547 KB
26 May 2020 2.32 PM
root / linksafe
0644
doctest.pyo
13.547 KB
26 May 2020 2.32 PM
root / linksafe
0644
fixtures.py
43.649 KB
26 May 2020 2.32 PM
root / linksafe
0644
fixtures.pyc
39.703 KB
26 May 2020 2.32 PM
root / linksafe
0644
fixtures.pyo
39.457 KB
26 May 2020 2.32 PM
root / linksafe
0644
freeze_support.py
1.167 KB
26 May 2020 2.32 PM
root / linksafe
0644
freeze_support.pyc
1.643 KB
26 May 2020 2.32 PM
root / linksafe
0644
freeze_support.pyo
1.643 KB
26 May 2020 2.32 PM
root / linksafe
0644
helpconfig.py
5.229 KB
26 May 2020 2.32 PM
root / linksafe
0644
helpconfig.pyc
6.306 KB
26 May 2020 2.32 PM
root / linksafe
0644
helpconfig.pyo
6.306 KB
26 May 2020 2.32 PM
root / linksafe
0644
hookspec.py
11.975 KB
26 May 2020 2.32 PM
root / linksafe
0644
hookspec.pyc
16.395 KB
26 May 2020 2.32 PM
root / linksafe
0644
hookspec.pyo
16.395 KB
26 May 2020 2.32 PM
root / linksafe
0644
junitxml.py
15.3 KB
26 May 2020 2.32 PM
root / linksafe
0644
junitxml.pyc
17.618 KB
26 May 2020 2.32 PM
root / linksafe
0644
junitxml.pyo
17.577 KB
26 May 2020 2.32 PM
root / linksafe
0644
main.py
27.085 KB
26 May 2020 2.32 PM
root / linksafe
0644
main.pyc
31.199 KB
26 May 2020 2.32 PM
root / linksafe
0644
main.pyo
30.989 KB
26 May 2020 2.32 PM
root / linksafe
0644
mark.py
12.811 KB
26 May 2020 2.32 PM
root / linksafe
0644
mark.pyc
16.138 KB
26 May 2020 2.32 PM
root / linksafe
0644
mark.pyo
15.894 KB
26 May 2020 2.32 PM
root / linksafe
0644
monkeypatch.py
8.839 KB
26 May 2020 2.32 PM
root / linksafe
0644
monkeypatch.pyc
9.861 KB
26 May 2020 2.32 PM
root / linksafe
0644
monkeypatch.pyo
9.861 KB
26 May 2020 2.32 PM
root / linksafe
0644
nose.py
2.555 KB
26 May 2020 2.32 PM
root / linksafe
0644
nose.pyc
3.348 KB
26 May 2020 2.32 PM
root / linksafe
0644
nose.pyo
3.348 KB
26 May 2020 2.32 PM
root / linksafe
0644
pastebin.py
3.472 KB
26 May 2020 2.32 PM
root / linksafe
0644
pastebin.pyc
4.237 KB
26 May 2020 2.32 PM
root / linksafe
0644
pastebin.pyo
4.191 KB
26 May 2020 2.32 PM
root / linksafe
0644
pytester.py
39.118 KB
26 May 2020 2.32 PM
root / linksafe
0644
pytester.pyc
47.382 KB
26 May 2020 2.32 PM
root / linksafe
0644
pytester.pyo
46.949 KB
26 May 2020 2.32 PM
root / linksafe
0644
python.py
60.217 KB
26 May 2020 2.32 PM
root / linksafe
0644
python.pyc
60.975 KB
26 May 2020 2.32 PM
root / linksafe
0644
python.pyo
60.601 KB
26 May 2020 2.32 PM
root / linksafe
0644
recwarn.py
6.401 KB
26 May 2020 2.32 PM
root / linksafe
0644
recwarn.pyc
8.692 KB
26 May 2020 2.32 PM
root / linksafe
0644
recwarn.pyo
8.665 KB
26 May 2020 2.32 PM
root / linksafe
0644
resultlog.py
3.591 KB
26 May 2020 2.32 PM
root / linksafe
0644
resultlog.pyc
4.833 KB
26 May 2020 2.32 PM
root / linksafe
0644
resultlog.pyo
4.793 KB
26 May 2020 2.32 PM
root / linksafe
0644
runner.py
18.85 KB
26 May 2020 2.32 PM
root / linksafe
0644
runner.pyc
24.588 KB
26 May 2020 2.32 PM
root / linksafe
0644
runner.pyo
24.384 KB
26 May 2020 2.32 PM
root / linksafe
0644
setuponly.py
2.5 KB
26 May 2020 2.32 PM
root / linksafe
0644
setuponly.pyc
3.174 KB
26 May 2020 2.32 PM
root / linksafe
0644
setuponly.pyo
3.174 KB
26 May 2020 2.32 PM
root / linksafe
0644
setupplan.py
0.797 KB
26 May 2020 2.32 PM
root / linksafe
0644
setupplan.pyc
1.339 KB
26 May 2020 2.32 PM
root / linksafe
0644
setupplan.pyo
1.339 KB
26 May 2020 2.32 PM
root / linksafe
0644
skipping.py
13.299 KB
26 May 2020 2.32 PM
root / linksafe
0644
skipping.pyc
13.918 KB
26 May 2020 2.32 PM
root / linksafe
0644
skipping.pyo
13.857 KB
26 May 2020 2.32 PM
root / linksafe
0644
terminal.py
22.842 KB
26 May 2020 2.32 PM
root / linksafe
0644
terminal.pyc
25.278 KB
26 May 2020 2.32 PM
root / linksafe
0644
terminal.pyo
25.278 KB
26 May 2020 2.32 PM
root / linksafe
0644
tmpdir.py
4.093 KB
26 May 2020 2.32 PM
root / linksafe
0644
tmpdir.pyc
5.162 KB
26 May 2020 2.32 PM
root / linksafe
0644
tmpdir.pyo
5.162 KB
26 May 2020 2.32 PM
root / linksafe
0644
unittest.py
8.239 KB
26 May 2020 2.32 PM
root / linksafe
0644
unittest.pyc
9.867 KB
26 May 2020 2.32 PM
root / linksafe
0644
unittest.pyo
9.867 KB
26 May 2020 2.32 PM
root / linksafe
0644
warnings.py
2.291 KB
26 May 2020 2.32 PM
root / linksafe
0644
warnings.pyc
2.949 KB
26 May 2020 2.32 PM
root / linksafe
0644
warnings.pyo
2.949 KB
26 May 2020 2.32 PM
root / linksafe
0644

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