Previously under python 2.x the text field allowed through values which
would not be turned into a string. This is invalid as all output should
be a valid textual string. This commit fixes that behavior to properly
cast the value to a string in all cases.
* Added tutorial on how to create an embed
Had some spare time and figured I'd help out by creating a tutorial. Tried to follow the format in the rest of the bot tutorial, but if there are things that needs changing, please let me know!
* Added some comments
* Fix typo
* Fix another typo
* Update building_block_commands.md
* Update building_block_commands.md
* Update building_block_commands.md
* Update building_block_commands.md
* Update building_block_commands.md
* Added listeners docs
* Capitalize Discord
* Fix accidental double paste of content
* Update building_block_commands.md
* Update building_block_listeners.md
* Update message_embeds.md
* Added ETF support for Python 3.x
Bumped requirements for PyNaCl and youtube-dl
* Changed setup.py check from using six to sys
Bumped requirements for youtube-dl and websocket-client
* Fix IndexError instead of StopIteration when MessageIterator is done
* Make fill() return a boolean based on whether items were added to the
buffer, and update __next__() accordingly
Previously we used None as the sentinel for determining that a user had
not specified a default value for a field. This meant that a user could
never select `None` as the default value. We now properly use UNSET to
determine if a default was passed, this aligns better with the code as
it stands given that if no default is passed we'll use UNSET anyway.
* Check for Unset type in Emoji.custom
* Typecase id value to bool
in the case where id is Unset this will call the builtin
__bool__ which returns False. This is not ideal beacuse
an Id of 0 will mean the emoji is custom, but to fix would
require a deeper refactor of the Field logic. Lets put a pin
in it.
* Remove unused import