Skip to content

bugfix release

Compare
Choose a tag to compare
@jquast jquast released this 28 Mar 22:25
· 8 commits to master since this release
31cf46b
  • bugfix: "write after close" is disregarded, caused many errors logged in socket.send()
  • bugfix: in accessories.repr_mapping() about using shlex.quote on non-str,
    TypeError: expected string or bytes-like object, got 'int'
  • bugfix: about fn_encoding using repr() on TelnetReaderUnicode
  • bugfix: TelnetReader.is_closing() raises AttributeError
  • deprecation: TelnetReader.close and TelnetReader.connection_closed emit
    warning, use at_eof() and feed_eof() instead.
  • deprecation: the loop argument are is no longer accepted by TelnetReader.
  • enhancement: Add Generic Mud Communication Protocol support :ghissue:63 by
    @gtaylor!
  • change: TelnetReader and TelnetWriter no longer derive from
    asyncio.StreamReader and asyncio.StreamWriter, this fixes some TypeError
    in signatures and runtime