We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
versionadded
AbstractBot.make_identifier*()
1 parent 31e1c1e commit 46977b6Copy full SHA for 46977b6
sopel/irc/__init__.py
@@ -227,7 +227,10 @@ def hostmask(self) -> Optional[str]:
227
# Utility
228
229
def make_identifier(self, name: str) -> identifiers.Identifier:
230
- """Instantiate an Identifier using the bot's context."""
+ """Instantiate an Identifier using the bot's context.
231
+
232
+ .. versionadded:: 8.0
233
+ """
234
casemapping = {
235
'ascii': identifiers.ascii_lower,
236
'rfc1459': identifiers.rfc1459_lower,
@@ -260,6 +263,8 @@ def make_identifier_memory(self) -> memories.SopelIdentifierMemory:
260
263
identifier_factory=bot.make_identifier,
261
264
)
262
265
266
267
268
.. seealso::
269
270
The :mod:`.tools.memories` module describes how to use
0 commit comments