jaraco / irc

Full-featured Python IRC library for Python.
MIT License
390 stars 84 forks source link

Escape asterisks in doc of **connect_params #161

Closed sbraz closed 4 years ago

sbraz commented 4 years ago

This fixes the following warning: irc/bot.py:docstring of irc.bot.SingleServerIRCBot:29: WARNING: Inline strong start-string without end-string.

jaraco commented 4 years ago

In dd68925, I also had to make the docstring a raw string to avoid warnings on Python 3.7 about invalid escapes.

sbraz commented 4 years ago

Ah I missed that, thanks!