aboutsummaryrefslogtreecommitdiff
path: root/src/IRCBuffer.py
Commit message (Collapse)AuthorAgeFilesLines
* typehint for IRCBuffer._linesGravatar jesopo2019-06-071-1/+2
|
* Use a deque for temp chathistory storage (src/IRCBuffer.py)Gravatar jesopo2019-06-071-9/+8
|
* Only search messages from other users in `find_from` (src/IRCBuffer.py)Gravatar jesopo2019-01-261-1/+2
|
* Add `find_from` to IRCBuffer.Buffer, to find the most recent line from a givenGravatar jesopo2019-01-261-0/+8
| | | | user (src/IRCBuffer.py)
* Add `irc_lower()` and `irc_equals()` to IRCServer.Server so that no where elseGravatar jesopo2019-01-241-4/+3
| | | | in the code has to know about the server having a casemapping
* Add type annotionations to src/Timers.py and src/IRCBuffer.pyGravatar jesopo2018-11-111-1/+1
|
* Fix some non-explicit None returns, add type hints to important variablesGravatar jesopo2018-10-311-0/+2
|
* Fix/refactor issues brought up by type hint lintingGravatar jesopo2018-10-301-1/+1
|
* Add type/return hints throughout src/ and, in doing so, fix some cyclicalGravatar jesopo2018-10-301-12/+17
| | | | references.
* Move src/Utils.py in to src/utils/, splitting functionality out in to modules ofGravatar jesopo2018-10-031-3/+3
| | | | related functionality
* Support changing command responses from PRIVMSG to NOTICEGravatar jesopo2018-10-021-3/+10
|
* Better support for msgtags with PRIVMSGs; put functionality in toGravatar jesopo2018-10-011-3/+4
| | | | modules/commands.py to reply to specific messages by use of msgids
* Move most code in root directory to src/Gravatar jesopo2018-09-241-0/+48