/usr/lib/python3/dist-packages/twisted/python
NameSizeModeActions
test/-0755rm
_pydoctortemplates/-0755rm
__pycache__/-0755rm
compat.py169310644editdlrm
components.py141990644editdlrm
constants.py5130644editdlrm
context.py40540644editdlrm
deprecate.py276680644editdlrm
failure.py270070644editdlrm
fakepwd.py67320644editdlrm
filepath.py540230644editdlrm
formmethod.py121070644editdlrm
htmlizer.py36260644editdlrm
lockfile.py80260644editdlrm
log.py223020644editdlrm
logfile.py101190644editdlrm
modules.py267150644editdlrm
monkey.py21640644editdlrm
procutils.py13710644editdlrm
randbytes.py34590644editdlrm
rebuild.py71220644editdlrm
reflect.py204800644editdlrm
release.py11040644editdlrm
roots.py71780644editdlrm
runtime.py59240644editdlrm
sendmsg.py26820644editdlrm
shortcut.py23020644editdlrm
syslog.py36520644editdlrm
systemd.py29870644editdlrm
text.py54170644editdlrm
threadable.py33270644editdlrm
threadpool.py102030644editdlrm
twisted-completion.zsh13710644editdlrm
url.py2440644editdlrm
urlpath.py84470644editdlrm
usage.py345770644editdlrm
util.py274320644editdlrm
versions.py2730644editdlrm
win32.py47940644editdlrm
zippath.py90280644editdlrm
zipstream.py96800644editdlrm
_appdirs.py8200644editdlrm
_inotify.py34960644editdlrm
_pydoctor.py67350644editdlrm
_release.py188790644editdlrm
_shellcomp.py252790644editdlrm
_textattributes.py90970644editdlrm
_tzhelper.py31280644editdlrm
_url.py2280644editdlrm
__init__.py5980644editdlrm
Edit: /usr/lib/python3/dist-packages/twisted/python/twisted-completion.zsh (1371B)
#compdef twist twistd trial conch cftp ckeygen pyhtmlizer tkconch # # This is the ZSH completion file for Twisted commands. It calls the current # command-line with the special "--_shell-completion" option which is handled # by twisted.python.usage. t.p.usage then generates zsh code on stdout to # handle the completions for this particular command-line. # # 3rd parties that wish to provide zsh completion for commands that # use t.p.usage may copy this file and change the first line to reference # the name(s) of their command(s). # # This file is included in the official Zsh distribution as # Completion/Unix/Command/_twisted # redirect stderr to /dev/null otherwise deprecation warnings may get puked all # over the user's terminal if completing options for a deprecated command. # Redirect stderr to a file to debug errors. local cmd output cmd=("$words[@]" --_shell-completion zsh:$CURRENT) output=$("$cmd[@]" 2>/dev/null) if [[ $output == "#compdef "* ]]; then # Looks like we got a valid completion function - so eval it to produce # the completion matches. eval $output else echo "\nCompletion error running command:" ${(qqq)cmd} echo -n "If output below is unhelpful you may need to edit this file and " echo "redirect stderr to a file." echo "Expected completion function, but instead got:" echo $output return 1 fi