Changes between and of Initial VersionVersion 6Ticket #3978
- Timestamp:
- 10/23/2011 09:39:02 AM (9 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3978
-
Property
Status
changed from
new
toreopened
- Property Cc Thijs Triemstra added
-
Property
Summary
changed from
twisted.words.protocols.irc.IRCClient.me() overagressively backslashes
totwisted.words.protocols.irc.IRCClient.describe() overagressively backslashes
- Property Owner Jean-Paul Calderone deleted
-
Property
Status
changed from
-
Ticket #3978 – Description
initial v6 1 1 When my IRCClient-descended bot class calls: 2 2 {{{ 3 3 self.me(channel, r'\o/') 4 4 }}} 5 5 I am presented with the following in IRC (seen with irssi): 6 6 {{{ 7 7 13:00 * yardbird \\o/ 8 8 }}} 9 9 It strikes me that ctcpStringify is overagressively escaping the payload somehow. 10 10