mirror of
https://github.com/Mikaela/Limnoria.git
synced 2024-11-03 01:39:23 +01:00
cd02444f87
So they can be referenced from elsewhere in the doc.
78 lines
1.9 KiB
ReStructuredText
78 lines
1.9 KiB
ReStructuredText
.. _plugin-Debug:
|
|
|
|
Documentation for the Debug plugin for Supybot
|
|
==============================================
|
|
|
|
Purpose
|
|
-------
|
|
This is for developers debugging their plugins; it provides an eval command
|
|
as well as some other useful commands.
|
|
It should not be loaded with a default installation.
|
|
|
|
Usage
|
|
-----
|
|
This plugin provides debugging abilities for Supybot. It
|
|
should not be loaded with a default installation.
|
|
|
|
.. _commands-Debug:
|
|
|
|
Commands
|
|
--------
|
|
.. _command-Debug-channeldb:
|
|
|
|
channeldb [<channel>]
|
|
Returns the result of the channeldb converter.
|
|
|
|
.. _command-Debug-collect:
|
|
|
|
collect [<times>]
|
|
Does <times> gc collections, returning the number of objects collected each time. <times> defaults to 1.
|
|
|
|
.. _command-Debug-environ:
|
|
|
|
environ takes no arguments
|
|
Returns the environment of the supybot process.
|
|
|
|
.. _command-Debug-eval:
|
|
|
|
eval <expression>
|
|
Evaluates <expression> (which should be a Python expression) and returns its value. If an exception is raised, reports the exception (and logs the traceback to the bot's logfile).
|
|
|
|
.. _command-Debug-exec:
|
|
|
|
exec <statement>
|
|
Execs <code>. Returns success if it didn't raise any exceptions.
|
|
|
|
.. _command-Debug-exn:
|
|
|
|
exn <exception name>
|
|
Raises the exception matching <exception name>.
|
|
|
|
.. _command-Debug-sendquote:
|
|
|
|
sendquote <raw IRC message>
|
|
Sends (not queues) the raw IRC message given.
|
|
|
|
.. _command-Debug-settrace:
|
|
|
|
settrace [<filename>]
|
|
Starts tracing function calls to <filename>. If <filename> is not given, sys.stdout is used. This causes much output.
|
|
|
|
.. _command-Debug-simpleeval:
|
|
|
|
simpleeval <expression>
|
|
Evaluates the given expression.
|
|
|
|
.. _command-Debug-unsettrace:
|
|
|
|
unsettrace takes no arguments
|
|
Stops tracing function calls on stdout.
|
|
|
|
Configuration
|
|
-------------
|
|
supybot.plugins.Debug.public
|
|
This config variable defaults to "True", is not network-specific, and is not channel-specific.
|
|
|
|
Determines whether this plugin is publicly visible.
|
|
|