summaryrefslogtreecommitdiff
path: root/python
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2019-10-10 17:19:35 -0400
committerJordan Wiens <jordan@psifertex.com>2019-10-10 17:20:40 -0400
commit85af921dfe990be464be27add2956512e7d24de7 (patch)
tree86b29cb08f52bf1f02823844f9fbde243f0b96ef /python
parent2a61277ca861130a1ce36e23aac2870be8f71adf (diff)
switch to raw strings for sections that need to show some backslashes
Diffstat (limited to 'python')
-rw-r--r--python/plugin.py16
1 files changed, 8 insertions, 8 deletions
diff --git a/python/plugin.py b/python/plugin.py
index 08962381..e4049547 100644
--- a/python/plugin.py
+++ b/python/plugin.py
@@ -324,7 +324,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register(cls, name, description, action, is_valid = None):
- """
+ r"""
``register`` Register a plugin
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -343,7 +343,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_address(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_address`` Register a plugin to be called with an address argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -362,7 +362,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_range(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_range`` Register a plugin to be called with a range argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -381,7 +381,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_function(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_function`` Register a plugin to be called with a function argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -400,7 +400,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_low_level_il_function(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_low_level_il_function`` Register a plugin to be called with a low level IL function argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -419,7 +419,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_low_level_il_instruction(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_low_level_il_instruction`` Register a plugin to be called with a low level IL instruction argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -438,7 +438,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_medium_level_il_function(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_medium_level_il_function`` Register a plugin to be called with a medium level IL function argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)
@@ -457,7 +457,7 @@ class PluginCommand(with_metaclass(_PluginCommandMetaClass, object)):
@classmethod
def register_for_medium_level_il_instruction(cls, name, description, action, is_valid = None):
- """
+ r"""
``register_for_medium_level_il_instruction`` Register a plugin to be called with a medium level IL instruction argument
:param str name: name of the plugin (use 'Folder\\Name' to have the menu item nested in a folder)